| layout | title |
|---|---|
default |
A Great Vim Cheat Sheet |
#A Great Vim Cheat Sheet
Note: If you’re decent at vim and want your mind blown, check out Advanced Vim.
| layout | title |
|---|---|
default |
A Great Vim Cheat Sheet |
#A Great Vim Cheat Sheet
Note: If you’re decent at vim and want your mind blown, check out Advanced Vim.
| genesis_register_sidebar( array( | |
| 'id' => 'nav-social-menu', | |
| 'name' => __( 'Nav Social Menu', 'your-theme-slug' ), | |
| 'description' => __( 'This is the nav social menu section.', 'your-theme-slug' ), | |
| ) ); | |
| add_filter( 'genesis_nav_items', 'sws_social_icons', 10, 2 ); | |
| add_filter( 'wp_nav_menu_items', 'sws_social_icons', 10, 2 ); | |
| function sws_social_icons($menu, $args) { |
| <?php | |
| //* Do NOT include the opening php tag | |
| add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 ); | |
| /** | |
| * Filter menu items, appending either a search form or today's date. | |
| * | |
| * @param string $menu HTML string of list items. | |
| * @param stdClass $args Menu arguments. | |
| * |