wordpress除去評論者和評論內(nèi)容鏈接

字號:


    spam泛濫的時代如何控制好wordpress不被這些評論內(nèi)容鏈接鏈接導(dǎo)致網(wǎng)站被k,影響到整站的seo,這是很重要的。
    wordpress除去評論者和評論內(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評論者和評論內(nèi)容鏈接。