使用 Wordpress 动态加载帖子
Posted
技术标签:
【中文标题】使用 Wordpress 动态加载帖子【英文标题】:Dynamically loading posts with Wordpress 【发布时间】:2010-11-24 07:39:59 【问题描述】:这个helpful idea from Andy Gaskell 支持我下一个问题的 50%:
我想使用 WordPress 动态加载帖子。使用 Andy 的函数获取它们确实有效,但是如何将负载绑定到每个帖子?
我可以在 JS 脚本中插入 php 生成的内容(例如,发布永久链接)吗?
谢谢。
【问题讨论】:
【参考方案1】:知道了:
$("#triggerDIV a").click(function(id)
event.preventDefault(); // prevent a element from executing
var id = this.getAttribute('href'); // get the link
$("#targetDIV").load(id); // load it
);
【讨论】:
【参考方案2】:也许Jquery and Ajax in Wordpress Plugins?
【讨论】:
以上是关于使用 Wordpress 动态加载帖子的主要内容,如果未能解决你的问题,请参考以下文章
动态加载 wordpress wp_editor (ajax)