如果你使用的是 WordPress 標(biāo)準(zhǔn)的留言模板,并且你想移除留言表單的 URL 字段,你可以在當(dāng)前主題的 functions.php
添加如下代碼:
function wpjam_remove_comment_fields($fields) { unset($fields['url']); return $fields;}add_filter('comment_form_default_fields','wpjam_remove_comment_fields');