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 MaryOJob/5d66dd8d64c823d777080d7d09cf74e0 to your computer and use it in GitHub Desktop.
Save MaryOJob/5d66dd8d64c823d777080d7d09cf74e0 to your computer and use it in GitHub Desktop.
Enables comments for User Pages
//Enables comments for User Pages
function enable_comments_for_user_pages($postdata, $user, $level)
{
$postdata['comment_status'] = 'open';
return $postdata;
}
add_filter('pmpro_user_page_postdata', 'enable_comments_for_user_pages', 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment