1 <?php
2
3 /*
4 * WORDSMITH MENU CLASS
5 *
6 * this class is the base object for a post type to be added into wordpress.
7 *
8 */
9
10 namespace nk2580\wordsmith\Menus;
11
12 class Menu {
13
14 protected $menu;
15
16 public function __construct() {
17 add_action('after_setup_theme', array($this, 'add_menus'));
18 }
19
20 public function add_menus() {
21 foreach ($this->menu as $slug => $description) {
22 register_nav_menu($slug, $description);
23 }
24 }
25
26 }
27