Functions.php is not strictly a required file, but it provides so many benefits that 99.99% of themes have it. In functions.php, you can take advantage of WordPress’ built-in theme functionality and also add your own custom PHP code.
Now create a functions.php in your theme folder, as we will be adding code to it in the next section.
Add a Navigation Menu
Most, if not all, websites use navigation menus, but our theme does not support navigation menus so far. To tell WordPress that our theme has a navigation menu, we have to register it in functions.php like this:
register_nav_menus( array(‘menu-1’ => __( ‘Primary Menu’, ‘my-custom-theme’ ),
);
Note: register_nav_menus() accepts an array, so you can register as many menus as you want.
WordPress now knows about our menu, but we still need to output it in our theme. We do this by adding the following code below our site description in index.php:
wp_nav_menu( array(‘theme_location’ => ‘menu-1’,
) );
Now we have an (unstyled) navigation menu:
Search
Popular on Blogar
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1400 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1690 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1270 Views
How to Display Total Views on WordPress Posts
- August 27th, 2024
- 99 Views
How to Activate Windows 11 Pro (No tools needed)
- September 3rd, 2024
- 97 Views
How to disable automatic updates for themes and plugins in WordPress
- August 16th, 2024
- 95 Views
Get all WordPress category names and IDs
- August 21st, 2024
- 93 Views
WordPress sticky articles in categories but not on the homepage
- August 13th, 2024
- 91 Views
WordPress-How to show single post content in front-end?
- August 26th, 2024
- 90 Views
How To Find The IP Of Any Whatsapp Call
- September 3rd, 2024
- 83 Views
Recent Post
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1400 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1690 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1270 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 55 Views
More Post
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.