我有一个自定义的永久链接,例如“ /%postname%/%query%/”。如何将“ /%query%/”设置为查询字符串?
示例:/ post-name / my-query / 将转化为 index?name = post-name&q = my-query
此外,在“帖子”编辑页面中,示例永久链接应仅显示“ / post-name /” 这应该适用于帖子而非页面。我已经解决了页面。
我已经为post_link使用了这种过滤器
function test_post_permalink($permalink, $post_id, $leavename)
{
if (!is_admin()) return $permalink;
if (strpos($permalink, '%q%') === false) return $permalink;
return str_replace('%q%/', '', $permalink);
}
有什么建议吗?预先感谢!