Skip to content

Instantly share code, notes, and snippets.

@briansteeleca
briansteeleca / wp-nav-menu-parameters.php
Created February 12, 2019 19:35 — forked from zgordon/wp-nav-menu-parameters.php
Demo of the possible menu parameters for wp_nav_menu
<?php
$args = [
// Location pickable in Customizer
'theme_location' => 'main-menu',
// Assigns a default menu to location
'menu' => 'Main Menu',
// Main wrapper around the ul of posts
'container' => 'div',
'container_class' => 'container-class',
'container_id' => 'container-id',