比如我们有时候想让登录用户访问文章页面时的链接加上aff标识,这样它分享给别人时就自动带上了推广链接。
下面模板兔提供给大家一个方法,可以将以下代码加到主题的functions.php里
1 |
add_filter('<span class='wp_keywordlink_affiliate'><a href="https://www.mobantu.com/tag/the_permalink" title="View all posts in the_permalink" target="_blank" rel="noopener">the_permalink</a></span>', 'custom_<span class='wp_keywordlink_affiliate'><a href="https://www.mobantu.com/tag/the_permalink" title="View all posts in the_permalink" target="_blank" rel="noopener">the_permalink</a></span>'); function custom_<span class='wp_keywordlink_affiliate'><a href="https://www.mobantu.com/tag/the_permalink" title="View all posts in the_permalink" target="_blank" rel="noopener">the_permalink</a></span>($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 ); |
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。