0

推薦状スライダーのカテゴリ内の投稿からの抜粋を表示しようとしています。上記のコードがあり、高度なカスタム フィールドを使用して投稿をカスタマイズし、アバター、名前、引用を表示しています。スライダーが存在する footer.php にコードを追加していますが、表示される投稿は「未分類」セクションのものです。私が間違っていることは何か分かりますか?

<?php $posts = query_posts('cat=testimonials&showposts=1'); foreach($posts as $post) { ?>
<?php the_excerpt(); ?>
<?php } ?>
4

1 に答える 1

0
  query_posts('cat=testimonials&showposts=1');
  while (have_posts()) : the_post();
  the_excerpt();
  endwhile;

query_posts('cat=testimonials&showposts=1');

or try

query_posts('cat=CATID&showposts=1'); CATID >> Replace with your cat id

Updated Answer

Then try instead query_posts with get_post

global $post;
$args = array( 'numberposts' => -1, 'category' => 1 );
$myposts = get_posts( $args );
foreach( $myposts as $post ){ echo $post->post_excerpt; }

may be help you...

于 2012-11-27T14:04:49.280 に答える