Changeset 806538
- Timestamp:
- 11/19/2013 03:50:29 AM (12 years ago)
- Location:
- multiple-gallery-on-post/trunk
- Files:
-
- 4 edited
-
admin/options.php (modified) (1 diff)
-
functions.php (modified) (1 diff)
-
multiple-gallery-on-post.php (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multiple-gallery-on-post/trunk/admin/options.php
r806114 r806538 33 33 <?php 34 34 } 35 36 35 37 36 /** -
multiple-gallery-on-post/trunk/functions.php
r806114 r806538 243 243 244 244 // Register style and scripts 245 // Since 0.1 246 if(! function_exists('mgop_add_head_tag')){ 247 248 add_action('wp_head', 'mgop_add_head_tag'); 249 function mgop_add_head_tag(){ 250 wp_enqueue_style( 'mgop-theme-style', plugins_url() . '/multiple-gallery-on-post/style/style.css' ); 245 // Since 0.3 246 if(! function_exists('mgop_register_plugin_styles')){ 247 248 add_action( 'wp_enqueue_scripts', 'mgop_register_plugin_styles' ); 249 function mgop_register_plugin_styles(){ 250 wp_register_style( 'mgop-theme-style', plugins_url() . '/multiple-gallery-on-post/style/style.css' ); 251 wp_enqueue_style( 'mgop-theme-style' ); 252 251 253 wp_enqueue_script( 'mgop-theme-script', plugins_url() . '/multiple-gallery-on-post/style/style.js' ); 252 254 } -
multiple-gallery-on-post/trunk/multiple-gallery-on-post.php
r806114 r806538 4 4 * Plugin URI: http://iwayanwirka.duststone.com/multiple-gallery-on-post/ 5 5 * Description: Very simple gallery plugin embeded on post as metabox, be able to add multiple metaboxes in one post with ability to insert multiple images for each. 6 * Version: 0. 26 * Version: 0.3 7 7 * Author: I Wayan Wirka 8 8 * Author URI: http://iwayanwirka.duststone.com/ -
multiple-gallery-on-post/trunk/readme.txt
r806114 r806538 17 17 2. Gallery as a metabox for each galleries. 18 18 3. Unlimited images. 19 4. Be able to be automatically picked up into post display.19 4. Be able to displayed by shortcode or automatically before or after post content. 20 20 21 21 == Installation == … … 24 24 3. Go to settings page on Settings -> Multiple Gallery on Post. 25 25 4. Define gallery metaboxes through plugin setting page per content type. 26 5. Your post or page (depend on your settings) will have new gallery metabox(es), feel free to add new images.26 5. Go to edit post or page, it will have new gallery metaboxes(depend on your settings), feel free to add new images. 27 27 28 28 == Screenshots == … … 32 32 33 33 == Changelog == 34 = 0.3 = 35 * Fix registering style plugin to wp_head() instead of wp_footer(). 36 34 37 = 0.2 = 35 38 * Add options to display by shortcode. … … 39 42 40 43 == Upgrade Notice == 44 = 0.3 = 45 * Fix registering style plugin to wp_head() instead of wp_footer(). 46 41 47 = 0.1 = 42 48 * Initial release.
Note: See TracChangeset
for help on using the changeset viewer.