Advertisement
BakerMan

Untitled

Mar 6th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter( 'gettext', 'change_no_event_text' );
  2.  
  3. function change_no_event_text( $text ) {
  4.     if ( false === strpos( $text, 'There are no upcoming events at this time.' ) ) return $text;
  5.     return 'Custom message or HTML';
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement