WordPres评论者链接重定向
建站教程 阅读WordPres评论者链接重定向,WordPres程序默认评论链接地址是直接的,每一个评论者就一个评论者网站地址,这样会分散自己网站的权重,网上有很多方便都是修改WordPres程序,如果WordPres程序更新了等于白弄了很不方便,直接添加这个代码全部搞定,不用任何修改不用添加什么自己网址,今天我把WordPres评论者链接重定向方法分享给大家,请看以下操作!
1.登陆你的后台管理,选择【外观】-【编辑】-【模板函数 (functions.php)】
直接添加下面全部代码:【?>前面】
/*-----------------------------------------------------------------------------------*/ /* wordpress评论者链接重定向 /*-----------------------------------------------------------------------------------*/ add_filter('get_comment_author_link', 'An_add_redirect_comment_link', 5); add_filter('comment_text', 'An_add_redirect_comment_link', 99); function An_add_redirect_comment_link($text = '') { $text=str_replace('href="', 'href="'.get_option('home').'/?r=', $text); $text=str_replace("href='", "href='".get_option('home')."/?r=", $text); return $text;} add_action('init', 'An_redirect_comment_link'); function An_redirect_comment_link() { $redirect = $_GET['r']; if($redirect){ if(strpos($_SERVER['HTTP_REFERER'],get_option('home')) !== false){ header("Location: $redirect"); exit();} else { header ( "Location: " . bloginfo ( 'url' ) . "/" ); exit();}}}
本文链接:https://niujc.com/com/1373119.html
晚上好!当前时间为
目前距离2023年春节还有
TOP