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 curtismchale/d3434bd57de7ab50b1a8 to your computer and use it in GitHub Desktop.
Save curtismchale/d3434bd57de7ab50b1a8 to your computer and use it in GitHub Desktop.
<?php
/**
* Allows you to filter the stock bbPress message that reads 'You cannot create new topics at this time.'
*
* @param string $message stock Easy Content Restriction message
* @return string Your custom message
*/
function change_cant_create_topics_message( $message ) {
return 'Our custom message';
}
add_filter( 'wecr_restricted_content_message_cant_create_topics', 'change_cant_create_topics_message' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment