Wordpress - 静态首页应显示最新帖子

时间:2015-04-30 10:46:44

标签: php wordpress

我希望在我的WordPress上有一个静态首页,这个静态首页应显示最新的5个帖子,低于6个自定义元字段。这就是为什么我将阅读设置从最后的帖子更改为“静态页面”,因为否则我将无法访问自定义元字段。

我现在如何在首页上包含最新的5个博文,并使用默认的帖子模板/输出。

我用这个查询做到了:

[2015-04-30 15:57:31,284] INFO Accepted socket connection from /10.200.208.59:51780 (org.apache.zookeeper.
server.NIOServerCnxnFactory)
[2015-04-30 15:57:31,284] INFO Client attempting to establish new session at /10.200.208.59:51780 (org.apa
che.zookeeper.server.ZooKeeperServer)
[2015-04-30 15:57:31,315] INFO Established session 0x14d09cebce30007 with negotiated timeout 6000 for clie
nt /10.200.208.59:51780 (org.apache.zookeeper.server.ZooKeeperServer)

我现在是否必须完全重写帖子的代码,或者我可以以某种方式包含帖子模板?

谢谢!

2 个答案:

答案 0 :(得分:1)

您需要写这一行来显示最新帖子:

<?php 
wp_get_archives(array('type' => 'postbypost', 'limit' => 10, 'format' => 'html'));
?>

查看this link了解详情

答案 1 :(得分:0)

而不是CreateObject("WScript.Shell").Run("http://www.google.com")你应该尝试

WP_Query

查看更多详情here