我试图在存档中显示不同的模板。php页面。我需要根据自定义帖子类型加载不同的文章显示。这是我的代码:
<?php if(is_singular(\'libri\')) :?>
<?php
// WP_Query arguments
$args = array (
\'post_type\' => \'libri\',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
the_title();
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata(); ?>
<?php else : ?>
<?php endif; ?>
<?php get_footer();?>
无论如何,页面不会显示任何内容。我怎样才能解决这个问题?
谢谢