禁止使用模板插件做违法内容(涉黄等),否则将受到法律的制裁。

wordpress如何自动改变文章的链接the_permalink在后面加参数

禁止使用模板插件做违法内容(涉黄等),否则将受到法律的制裁。

比如我们有时候想让登录用户访问文章页面时的链接加上aff标识,这样它分享给别人时就自动带上了推广链接。

下面模板兔提供给大家一个方法,可以将以下代码加到主题的functions.php里

add_filter('the_permalink', 'custom_the_permalink');
function custom_the_permalink($url) {
global $post;
if (is_user_logged_in()) {
global $current_user;
$url = add_query_arg('aff',$current_user->ID,$url);
}
return $url;
}

function custom_post_link( $url, $post, $leavename=false ) {
if (is_user_logged_in()) {
global $current_user;
$url = add_query_arg('aff',$current_user->ID,$url);
}
return $url;
}
add_filter( 'post_link', 'custom_post_link', 10, 3 );

0 个评论

 
联系
目前暂停一切业务,客服消息可能不会及时回复,谢谢理解。
在线咨询
    在线咨询
    禁止使用模板插件做违法内容(涉黄等),否则将受到法律的制裁。