Created
October 23, 2012 20:54
-
-
Save takatoshi/3941485 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class My_Walker_Nav_Menu extends Walker_Nav_Menu { | |
| //ここにカスタマイズするコードを書く | |
| } | |
| add_filter('wp_nav_menu_args', 'my_nav_menu_args'); | |
| function my_nav_menu_args($args) { | |
| $args = (object)$args; | |
| $args->walker = new My_Walker_Nav_Menu; | |
| return $args; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment