Changeset 582548
- Timestamp:
- 08/07/2012 06:06:49 AM (14 years ago)
- Location:
- shortcode-reference/trunk
- Files:
-
- 2 edited
-
conf/include.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shortcode-reference/trunk/conf/include.php
r582536 r582548 26 26 function shortcode_reference_render_meta_box(){ 27 27 $ShortcodeReferenceUIManager = new ShortcodeReferenceUIManager(); 28 add_meta_box('shortcode_overview_container',__('Shortcode reference','ShortcodesAutoreference'), array(&$ShortcodeReferenceUIManager,'showReferencePanel'), 'post','side');29 add_meta_box('shortcode_overview_container',__('Shortcode reference','ShortcodesAutoreference'), array(&$ShortcodeReferenceUIManager,'showReferencePanel'), 'page','side');30 add_meta_box('shortcode_overview_container',__('Shortcode reference','ShortcodesAutoreference'), array(&$ShortcodeReferenceUIManager,'showReferencePanel'), 'link','side'); 28 foreach (get_post_types( array('public' => true) ) as $posttype){ 29 add_meta_box('shortcode_overview_container',__('Shortcode reference','ShortcodesAutoreference'), array(&$ShortcodeReferenceUIManager,'showReferencePanel'), $posttype, 'side'); 30 } 31 31 } 32 32 -
shortcode-reference/trunk/readme.txt
r582536 r582548 8 8 9 9 This plugin will provide a list and details about available shortcodes in your current installment. All when you need it most. 10 When editing your content. 10 When editing your content. 11 11 12 12 13 == Description == … … 43 44 44 45 == Changelog == 46 = 0.3 = 47 * Added reference box to all public post types. 48 45 49 = 0.2 = 46 50 * Changed resolving of the plugin's css/js files
Note: See TracChangeset
for help on using the changeset viewer.