我正在尝试在推荐滑块的某个类别中显示帖子的摘录。我有上面的代码,我正在使用高级自定义字段自定义帖子以显示头像、姓名和报价。我将代码添加到存在滑块的 footer.php 中,但出现的帖子是“未分类”部分中的帖子。知道我做错了什么吗?
<?php $posts = query_posts('cat=testimonials&showposts=1'); foreach($posts as $post) { ?>
<?php the_excerpt(); ?>
<?php } ?>
我正在尝试在推荐滑块的某个类别中显示帖子的摘录。我有上面的代码,我正在使用高级自定义字段自定义帖子以显示头像、姓名和报价。我将代码添加到存在滑块的 footer.php 中,但出现的帖子是“未分类”部分中的帖子。知道我做错了什么吗?
<?php $posts = query_posts('cat=testimonials&showposts=1'); foreach($posts as $post) { ?>
<?php the_excerpt(); ?>
<?php } ?>
query_posts('cat=testimonials&showposts=1');
while (have_posts()) : the_post();
the_excerpt();
endwhile;
query_posts('cat=testimonials&showposts=1');
或尝试
query_posts('cat=CATID&showposts=1'); CATID >> 替换为您的猫 ID
更新的答案
然后尝试使用 get_post 代替 query_posts
global $post;
$args = array( 'numberposts' => -1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ){ echo $post->post_excerpt; }
可能会帮助你...