mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
164 B
Text
5 lines
164 B
Text
function wp_disable_comment_url($fields) {
|
||
unset($fields[‘url’]);
|
||
return $fields;
|
||
}
|
||
add_filter(‘comment_form_default_fields’,’wp_disable_comment_url’);
|