WordPress:获取最新的帖子/图像以显示在外部(Posterous)站点模板上
我目前有一个基于 Wordpress 构建的网站。我需要拉出类别(杂志问题)中的“最新帖子”,以允许最新问题显示在 Posterous 博客模板的侧边栏中,无论是在 iframe 中还是通过其他方式。
实现这一目标的最佳方法是什么?我是否应该编写一个自定义 PHP 页面,直接查询数据库以输出我想要的结果,然后将其显示在 Posterous 模板上的 iframe 中?或者有更简单的方法来实现这一目标吗?
I have a site currently built on Wordpress. I have a requirement to pull out the "latest post" in a category (magazine issue), to allow the latest issue to be displayed in the sidebar of a Posterous blog template, either in an iframe or by other means.
What's the best way to achieve this? Shall I write a custom PHP page which queries the database directly to output the results that I want, and then display it in an iframe on the Posterous template? Or is there an easier way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以注册一个小部件到侧边栏,或者直接在sidebar.php中添加代码。最后,您要做的就是为类别中的最新帖子构建 WP 查询。
You could register a widget to the sidebar or simply add code the sidebar.php directly. In the end, all you are doing is building a WP Query for the latest post in a category.