PHP Wordpress - 获取类别的帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 获取类别的帖子相关的知识,希望对你有一定的参考价值。
<?php
$args = array( 'numberposts' => 3, 'order'=> 'DESC', 'orderby' => 'post_date', 'category' => 7 );
$postslist = get_posts( $args );
foreach ($postslist as $post) : setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<?php endforeach; ?>
以上是关于PHP Wordpress - 获取类别的帖子的主要内容,如果未能解决你的问题,请参考以下文章
PHP 查询按类别获取帖子 - Wordpress
PHP 获取自定义帖子类型的WordPress标签/类别
从单个帖子中获取 Wordpress 类别
从 WordPress 中的特定类别获取置顶帖子
Wordpress - 我如何从其他自定义帖子中获取_categories?
php Wordpress - 列出所有(自定义帖子类型)帖子类别