比如我们有时候想让登录用户访问文章页面时的链接加上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 );
www.npspro.top互联侠客
软师傅 » wordpress如何自动改变文章的链接the_permalink在后面加参数

最TOP的Docker,软路由,虚拟机等学习资料

立即查看 了解详情