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中的最新帖子的主要内容,如果未能解决你的问题,请参考以下文章