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 rickslayer/666009611546df40a3966beec64b4f75 to your computer and use it in GitHub Desktop.
Save rickslayer/666009611546df40a3966beec64b4f75 to your computer and use it in GitHub Desktop.
Bloquear permitir comentários por padrão no wordpress
<?php
function remove_allow_comments_default($data)
{
$data['comment_status'] = 0;
return $data;
}
add_action( 'wp_insert_post_data', 'remove_allow_comments_default', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment