WORDPRESS-仅从特定类别获取标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WORDPRESS-仅从特定类别获取标题相关的知识,希望对你有一定的参考价值。

Takes titles from a certain category and lists them in an unordered list.
  1. <ul>
  2. <?php
  3. $cat_posts = get_posts('category=10&numberposts=-1');
  4. foreach($cat_posts as $post) : setup_postdata($post);
  5. ?>
  6. <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink to <?php the_title(); ?>">
  7. <?php the_title(); ?>
  8. </a></li>
  9. <?php endforeach; ?>
  10. </ul>

以上是关于WORDPRESS-仅从特定类别获取标题的主要内容,如果未能解决你的问题,请参考以下文章

从 WordPress 中的特定类别获取置顶帖子

Wordpress wpu获取特定类别的文档

获取带有特定类别附件的帖子?

Wordpress自定义模板,用于特定类别的Feed

Wordpress 类别模板显示来自所有类别的帖子,而不是特定类别的帖子

从特定的 Wordpress 类别中提取帖子