Здравствуйте.
Есть такой код:
add_action('wp_ajax_loadmore', 'true_load_posts');
add_action('wp_ajax_nopriv_loadmore', 'true_load_posts');
function true_load_posts(){
$args = unserialize( stripslashes( $_POST['query'] ) );
$args['paged'] = $_POST['page'] + 1;
$args['post_status'] = 'publish';
query_posts( $args );
if( have_posts() ) :
while( have_posts() ): the_post();
get_template_part( 'template-parts/post/content', get_post_format() );
endwhile;
endif;
die();
}
Необходимо подобное:
if( is_page_template('page-template.php') ) :
get_template_part( 'template-parts/post/content-template', get_post_format() );
else :
get_template_part( 'template-parts/post/content', get_post_format() );
endif;
Только как это реализовать в самом functions.php?