Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shemul49rmc/7214024 to your computer and use it in GitHub Desktop.
Save shemul49rmc/7214024 to your computer and use it in GitHub Desktop.
Remove the Website Field from Genesis Comments Form
//Remove the Website Field from Genesis Comments Form*http://iamshemul.com/?p=2395*//
add_filter( 'genesis_comment_form_args', 'wps_comment_form_args' );
function wps_comment_form_args( $args ) {
unset( $args['fields']['url'] );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment