Answers for "wordpress add menu to custom header"

3

wordpress functions add to header

/* INSIDE functions.php */
/* Describe what the code snippet does so you can remember later on */
add_action('wp_head', 'your_function_name');
function your_function_name(){
?>
PASTE HEADER CODE HERE
<?php
};
Posted by: Guest on December-22-2020
0

How to Add Custom Navigation Menus in WordPress Themes

function wpb_custom_new_menu() {
  register_nav_menu('my-custom-menu',__( 'My Custom Menu' ));
}
add_action( 'init', 'wpb_custom_new_menu' );
Posted by: Guest on October-08-2021

Code answers related to "wordpress add menu to custom header"

Code answers related to "Javascript"

Browse Popular Code Answers by Language