PHP 在Wordpress主页上显示的帖子数量不同于其他页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在Wordpress主页上显示的帖子数量不同于其他页面相关的知识,希望对你有一定的参考价值。

<?php
	// If we're on the index page, we only want the two first posts.
	if ( is_home() && !is_paged() )
		query_posts('posts_per_page=2');

	// If we're within the index archives, we want ten posts per page as usual.
	else {
		// If we are past the second page, offset by an appropriate amount for the page.
		// I'm by no means a math guru; I don't know why this works. Trial & error rocks!
		if ( get_query_var('paged') != 2 )
			$offsetting = 2 + ( ( get_query_var('paged') - 2 ) * get_query_var('posts_per_page') );

		// If we're on the second page, offset by two.
		else
			$offsetting = 2;

		// Plug it into our query.
		query_posts($query_string . "&offset=$offsetting");
	}
?>

以上是关于PHP 在Wordpress主页上显示的帖子数量不同于其他页面的主要内容,如果未能解决你的问题,请参考以下文章

在静态 html 页面上显示最新的 wordpress 特色图片

如何在没有 single.php 的情况下从 wordpress 帖子中删除特色图片

如何隐藏博客帖子表单主页

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

突出显示存档中的类别 - WordPress

如何在 wordpress 的主页上显示裁剪的图像?