WORDPRESS-仅从特定类别获取标题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WORDPRESS-仅从特定类别获取标题相关的知识,希望对你有一定的参考价值。
Takes titles from a certain category and lists them in an unordered list.
<ul> <?php $cat_posts = get_posts('category=10&numberposts=-1'); foreach($cat_posts as $post) : setup_postdata($post); ?> <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink to <?php the_title(); ?>"> <?php the_title(); ?> </a></li> <?php endforeach; ?> </ul>
以上是关于WORDPRESS-仅从特定类别获取标题的主要内容,如果未能解决你的问题,请参考以下文章