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

字號:


    Spam泛濫的時(shí)代如何控制好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)容鏈接。