在内容/循环之前,我在顶部有这篇特色文章。问题是,它出现在主页之外的其他页面中。我尝试了几种解决方案,但我无法掩饰。任何帮助都会很好。
<?php
$args = array(
\'posts_per_page\' => 1,
\'meta_key\' => \'meta-checkbox\',
\'meta_value\' => \'yes\'
);
$featured = new WP_Query($args);
if ($featured->have_posts()): while($featured->have_posts()):
$featured->the_post(); ?>
<h3><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></h3>
<?php if (has_post_thumbnail()) : ?>
<figure> <a href="<?php the_permalink(); ?>"><?php
the_post_thumbnail(); ?></a> </figure>
<p><?php the_excerpt();?></p>
<?php
endif;
endwhile; else:
endif;
?>