我正在尝试显示来自特定类别的最后 5 个帖子,这些帖子将链接到一个函数,以便我可以在 Wordpress 页面中插入简码。我拥有的代码如下,它可以满足我的一切需求(尽管我也想添加特色图片),但它不显示来自特定类别的帖子。
我尝试了很多东西,但找不到有效的修复方法。
function Last5posts()
{
$args = array( "showposts" => 5, "category" => 3 );
$content = "";
query_posts($args);
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
$link = get_permalink();
$title = get_the_title();
$date = get_the_date();
$content .= "<div class='latest-posts'>";
$content .= "<h3><a href='$link' target='_top'>$title / $date</a </h3>\n";
$content .= "<p class='excerpt'>" . get_the_excerpt() . "</p>";
$content .= "</div>";
endwhile;
wp_reset_query();
endif;
return $content;
}
add_shortcode('Last5Posts', 'Last5posts' );
我尝试用下面的代码替换第 3 行和第 4 行,但它会引发错误“语法错误,第 31 行意外'}'”。
$catquery = new WP_Query( 'cat=3&posts_per_page=10' );
while($catquery->have_posts()) : $catquery->the_post();
任何帮助将不胜感激。