尝试@birgire的解决方案。它对Wordpress 4有效吗。十、
我无法添加任何fot eh preview\\u post\\u链接或preview\\u page\\u链接筛选器。函数jsut不会被命中。
function bitflower_change_post_link($link, $post) {
//replace www part with server1 using the following php function
//preg_replace ( patter, replace, subject ) syntax
// $link = preg_replace(\'/cms/\', \'\', $link);
$link = $link . \'?testttttt=1\';
return $link;
}
add_filter(\'preview_post_link\', \'bitflower_change_post_link\', 10, 2);
我尝试了使用10,2参数和不使用。我已经在文件中写入了一个字符串,以查看过滤器是否被命中。没有运气。
Wordpress的官方代码参考至少列出了filter preview\\u post\\u链接。
有什么想法吗?
PS:想发表评论,但没有足够的声誉。