Changeset 729509
- Timestamp:
- 06/21/2013 05:44:00 PM (13 years ago)
- Location:
- multi-video-box/trunk
- Files:
-
- 3 edited
-
multi-video-box.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
views/common/instructions_shortcode.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/trunk/multi-video-box.php
r729494 r729509 4 4 Plugin URI: http://www.nuttymango.com/multi-video-box/ 5 5 Description: "Multi Video Box" gives you the capability to output numerous videos on a single page, but only take up the space of a single video. Uses tabbed navigation to switch videos. 6 Version: 1.5. 16 Version: 1.5.2 7 7 Author: Scott Kustes 8 8 Author URI: http://www.nuttymango.com/ … … 25 25 // Constants for MVOB definition 26 26 if ( !defined( 'MVOB_DB_VERS' ) ) 27 define( 'MVOB_DB_VERS' , '1.5. 1' );27 define( 'MVOB_DB_VERS' , '1.5.2' ); 28 28 if ( !defined( 'MVOB_PLUGIN_URL' ) ) 29 29 define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) ); -
multi-video-box/trunk/readme.txt
r729494 r729509 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.5. 17 Stable tag: 1.5.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 36 36 == Changelog == 37 38 = 1.5.2 = 39 * Updated instructions for shortcode 37 40 38 41 = 1.5.1 = … … 72 75 If you want to custom tailor the output of your Videos, the [mvob] shortcode gives you several options. You can use any or all of these when you call the [mvob] shortcode. 73 76 74 * tab _side- Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.75 * title _output - Where do you want the title of the Video displayed? Accepts: top (default) or bottom76 * description _output - Where do you want the description of the Video displayed? Accepts: top (default) or bottom77 * tab - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video. 78 * title - Where do you want the title of the Video displayed? Accepts: top (default), bottom, or none 79 * description - Where do you want the description of the Video displayed? Accepts: top (default), bottom, or none 77 80 78 81 == Shortcode Examples == 79 82 * [mvob group=1] Outputs the videos for Group #1 with default settings 80 * [mvob group=12 tab _side="left" title_output="bottom"] Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).81 * [mvob video=2 tab _side="left" description_output="bottom"] Outputs Video #2 with the title above the video (per default setting) and description below the video. tab_sideis ignored because there is only one Video being output.83 * [mvob group=12 tab="left" title="bottom"] Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting). 84 * [mvob video=2 tab="left" description="bottom"] Outputs Video #2 with the title above the video (per default setting) and description below the video. tab setting is ignored because there is only one Video being output. -
multi-video-box/trunk/views/common/instructions_shortcode.php
r717783 r729509 12 12 If you want to custom tailor the output of your Videos, the [mvob] shortcode gives you several options. You can use any or all of these when you call the [mvob] shortcode. 13 13 <ul> 14 <li><strong>tab _side</strong> - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.</li>15 <li><strong>title _output</strong> - Where do you want the title of the Video displayed? Accepts: top (default) or bottom</li>16 <li><strong>description _output</strong> - Where do you want the description of the Video displayed? Accepts: top (default) or bottom</li>14 <li><strong>tab</strong> - Which side of the Video display do you want the tabs on? Accepts: top (default), left, bottom, and right. This parameter is ignored if you're only outputting a single Video.</li> 15 <li><strong>title</strong> - Where do you want the title of the Video displayed? Accepts: top (default), bottom, or none</li> 16 <li><strong>description</strong> - Where do you want the description of the Video displayed? Accepts: top (default), bottom, or none</li> 17 17 </ul> 18 18 … … 20 20 <ul> 21 21 <li><strong>[mvob group=1]</strong>:<br/>Outputs the videos for Group #1 with default settings</li> 22 <li><strong>[mvob group=12 tab _side="left" title_output="bottom"]</strong>:<br/>Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).</li>23 <li><strong>[mvob video=2 tab _side="left" description_output="bottom"]</strong>:<br/>Outputs Video #2 with the title above the video (per default setting) and description below the video. tab_sideis ignored because there is only one Video being output.</li>22 <li><strong>[mvob group=12 tab="left" title="bottom"]</strong>:<br/>Outputs videos for Group #12 with tabs on the left and the title below the video. Description remains above the video (per default setting).</li> 23 <li><strong>[mvob video=2 tab="left" description="bottom"]</strong>:<br/>Outputs Video #2 with the title above the video (per default setting) and description below the video. tab setting is ignored because there is only one Video being output.</li> 24 24 </ul> 25 25 </div>
Note: See TracChangeset
for help on using the changeset viewer.