如何通过筛选器修改固定链接? 时间:2014-05-12 作者:wilsonf1 当调用_permalink时,我想在我的while站点中更改URL的in my href属性。例如:<h2><a href="<?php the_permalink()?>" 我可以使用我的功能吗。php文件调用我的自定义函数,该函数处理搜索并替换URL中的function updateToPerfectURLs($content) { 1 个回复 SO网友:wilsonf1 哦,比我想象的要容易!function edit_the_permalink($html){ $html = updateToPerfectURLs($html); return $html; } add_filter(\'the_permalink\', \'edit_the_permalink\'); 结束 文章导航