0
Comment Author Link on Wordpress評論作者鏈接在WordPress的所有評論
這是一個基於上述帖子中提供的解決方案的問題。
它代替了那些沒有鏈接的人的評論作者鏈接。 是否有可能爲所有評論做到這一點。 (所有的評論者將被鏈接到作者網頁「)
Comment Author Link on Wordpress評論作者鏈接在WordPress的所有評論
這是一個基於上述帖子中提供的解決方案的問題。
它代替了那些沒有鏈接的人的評論作者鏈接。 是否有可能爲所有評論做到這一點。 (所有的評論者將被鏈接到作者網頁「)
你怎麼樣試試這個
function force_comment_author_url($comment)
{
// does the comment have a valid author URL?
$no_url = !$comment->comment_author_url || $comment->comment_author_url == 'http://';
$comment->comment_author_url = get_author_posts_url($comment->user_id);
return $comment;
}
add_filter('get_comment', 'force_comment_author_url');