【发布时间】:2012-03-14 13:13:19
【问题描述】:
我一直在尝试使用How to change the href for a hyperlink using jQuery 的答案来修改 WordPress 永久链接,但是我运气不佳,需要帮助。
我正在尝试修改站点上所有页面的一个超链接上的 WordPress 永久链接。
<a id="language" href="<?php the_permalink() ?>">German</a>
假设永久链接是http://www.wordpress-site.com/about-us/
我想修改一下,用jQuery读取http://www.wordpress-site.com/ger/about-us/
我的 jQuery 代码需要什么才能完成此任务?它需要在站点上的所有页面上动态工作,在所有页面上识别a#language 中的http://www.wordpress-site.com/whatever/,并将其替换为http://www.wordpress-site.com/ger/whatever
【问题讨论】:
标签: jquery wordpress permalinks