spam泛濫的時(shí)代如何控制好wordpress不被這些評(píng)論內(nèi)容鏈接鏈接導(dǎo)致網(wǎng)站被k,影響到整站的seo,這是很重要的。
wordpress除去評(píng)論者和評(píng)論內(nèi)容鏈接
把如下代碼加入主題模板函數(shù)functions.php文件中,修改前記得先備份functions.php文件,加在中間即可。
function remove_comment_links() {
global $comment;
$url = get_comment_author_url();
$author = get_comment_author();
if ( empty( $url ) || 'http://' == $url )
$return = $author;
else
$return = $author;
return $return;
}
add_filter('get_comment_author_link', 'remove_comment_links');
remove_filter('comment_text', 'make_clickable', 9);
這樣設(shè)置以就可以除去wordpress評(píng)論者和評(píng)論內(nèi)容鏈接。
2025國(guó)考·省考課程試聽(tīng)報(bào)名