Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Link menu personalizzato con lo stesso dominio
- * Se si vuole un menu tipo http://mydomain.com/myCustomPage
- * bisogna scrivere nel link %ROOT%/myCustomPage
- * e nell'etichetta myCustomPage
- */
- global $MYTEST;
- $MYTEST[] = "HEELO";
- add_filter('wp_nav_menu_items','apply_relative_menu_item', 10, 2);
- function apply_relative_menu_item($items, $args){
- global $MYTEST;
- $items = preg_replace("#http://%ROOT%#", get_bloginfo("url"), $items);
- $MYTEST[] = $items;
- return $items;
- }
Advertisement
Add Comment
Please, Sign In to add comment