File "single.php"

Full path: /home/jonasls/www/wp-content/themes/proton/single.php
File size: 0.25 KB (259 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php
get_header();

if (have_posts()) {
	while (have_posts()) {
		the_post();
		if (get_field("proton_post_type") == '2') {
			get_template_part('templates/single-portfolio');
		} else {
			get_template_part('templates/single-blog');
		}
	}
}

get_footer();