PHP 获取WordPress中的最新帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 获取WordPress中的最新帖子相关的知识,希望对你有一定的参考价值。

<?php
	/* Get all sticky posts */
	$sticky = get_option( 'sticky_posts' );

	/* Sort the stickies with the newest ones at the top */
	rsort( $sticky );

	/* Get the 2 newest stickies (change 2 for a different number) */
	$sticky = array_slice( $sticky, 0, 2 );

	/* Query sticky posts */
	query_posts( array( 'post__in' => $sticky, 'caller_get_posts' => 1 ) );
?>

以上是关于PHP 获取WordPress中的最新帖子的主要内容,如果未能解决你的问题,请参考以下文章

在functions.php中获取wordpress帖子ID

PHP Wordpress:在任何Wordpress页面上显示最新的博客帖子

PHP 显示5个最新的Wordpress帖子

PHP WordPress:来自类别的最新帖子

PHP 单个Wordpress循环显示最新的夫妇帖子和其余的标题

在我的网页上从我的 wordpress 获取最新帖子