Skip to content

Instantly share code, notes, and snippets.

@itsmereal
Forked from nciske/filter-nav-menus.php
Created November 12, 2013 13:24
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 itsmereal/7430749 to your computer and use it in GitHub Desktop.
Save itsmereal/7430749 to your computer and use it in GitHub Desktop.
<?php
// Add a custom menu item with the URL "_SITEURL_/test" and label "[test]" to see it in action
add_filter('wp_nav_menu', 'menu_shortcodes');
function menu_shortcodes( $menu ){
return str_replace('_SITEURL_',preg_replace("~^(?:f|ht)tps?://~i", '', home_url() ), do_shortcode( $menu ) );
}
add_shortcode('test','tester');
function tester(){
return 'Worked!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment