比如我们有时候想让登录用户访问文章页面时的链接加上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 个评论