因此,我正在尝试使用一个快捷码,它可以调用特色故事类别中的帖子,但我在将其输出到帖子的标题时遇到了问题。页面上没有错误。但是除了导航和页脚之间的空白,也没有其他显示。
function featured_story() {
$args = array(
\'posts_per_page\' => 5,
\'category_name\' => \'featured_story\'
);
$last_5_posts_query = new WP_Query( $args );
while($last_5_posts_query->have_posts()) :
$last_5_posts_query->the_post();
$title = get_the_title();
$content .= \'<div class="featured-stories">\';
$content .= \'<h3>\' .$title. \'</h3>\';
endwhile;
return $content;
}
add_shortcode( \'featured-story\', \'featured_story\' );