Changeset 472118
- Timestamp:
- 12/07/2011 06:41:22 PM (14 years ago)
- Location:
- custom-menu/trunk
- Files:
-
- 1 deleted
- 3 edited
-
class-custom-menu-shortcode.php (modified) (1 diff)
-
custom-menu.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
rename (deleted)
Legend:
- Unmodified
- Added
- Removed
-
custom-menu/trunk/class-custom-menu-shortcode.php
r451505 r472118 33 33 echo '<h3 class="custom-menu-title">' . $atts['title'] . '</h3>'; 34 34 35 wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $nav_menu) );35 return wp_nav_menu( array( 'fallback_cb' => '', 'menu' => $nav_menu, 'echo' => false ) ); 36 36 } 37 37 -
custom-menu/trunk/custom-menu.php
r453113 r472118 4 4 Plugin URI: http://www.evolonix.com/wordpress/plugins/custom-menu 5 5 Description: This plugin allows you to display a custom menu that you've created in your theme's "Menus" section in a post or page. Use [menu name="Menu Name"] in your post or page to insert the custom menu. The "name" attribute is required. Since version 1.2, you can now provide a "title" attribute to add a header title to your custom menu (e.g. [menu name="Menu Name" title="My Menu"].) 6 Version: 1. 46 Version: 1.5 7 7 Author: Evolonix 8 8 Author URI: http://www.evolonix.com -
custom-menu/trunk/readme.txt
r453113 r472118 5 5 Requires at least: 2.0.2 6 6 Tested up to: 3.2.1 7 Stable tag: 1. 27 Stable tag: 1.5 8 8 9 9 This plugin allows you to display a custom menu that you've created in your theme's "Menus" section in a post or page. … … 29 29 30 30 == Changelog == 31 32 = 1.5 = 33 * Fixed a bug where the menu was always being placed at the top of the content, regardless where the short code was placed. 31 34 32 35 = 1.4 =
Note: See TracChangeset
for help on using the changeset viewer.