Advertisement
eventsmanager

Site URL placeholder in event formats

Feb 24th, 2019
926
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <?php
  2. /**
  3.  * This snippet replaces #_SITEURL with the URL of the site in event formats.
  4.  * For installation instructions, see here - http://wp-events-plugin.com/tutorials/how-to-safely-add-php-code-to-wordpress/
  5.  */
  6. function my_em_site_url_placeholder($replace, $EM_Category, $result){
  7.     switch( $result ){
  8.         case '#_SITEURL':
  9.             $replace = get_site_url();
  10.             break;
  11.     }
  12.     return $replace;
  13. }
  14. add_filter('em_event_output_placeholder','my_em_site_url_placeholder',1,3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement