Skip to content

Instantly share code, notes, and snippets.

@mrkkr
Created April 25, 2018 12:08
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 mrkkr/fa9d1dbb2e6a9f3beefa4dc3b2bf0ec1 to your computer and use it in GitHub Desktop.
Save mrkkr/fa9d1dbb2e6a9f3beefa4dc3b2bf0ec1 to your computer and use it in GitHub Desktop.
Add custom items to menu in Wordpress #php
<?php
/* add custom items to primary menu */
add_filter('wp_nav_menu_items','add_search_box_to_menu', 10, 2);
function add_search_box_to_menu( $items, $args ) {
if( $args->theme_location == 'primary' ) /* ID of menu */
return $items.'CUSTOM THINGS';
return $items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment