Plugin Directory

Changeset 729509


Ignore:
Timestamp:
06/21/2013 05:44:00 PM (13 years ago)
Author:
skustes
Message:
  • Updated instructions for shortcode
Location:
multi-video-box/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • multi-video-box/trunk/multi-video-box.php

    r729494 r729509  
    44Plugin URI: http://www.nuttymango.com/multi-video-box/
    55Description: "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.1
     6Version: 1.5.2
    77Author: Scott Kustes
    88Author URI: http://www.nuttymango.com/
     
    2525// Constants for MVOB definition
    2626if ( !defined( 'MVOB_DB_VERS' ) )
    27     define( 'MVOB_DB_VERS' , '1.5.1' );
     27    define( 'MVOB_DB_VERS' , '1.5.2' );
    2828if ( !defined( 'MVOB_PLUGIN_URL' ) )
    2929    define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) );
  • multi-video-box/trunk/readme.txt

    r729494 r729509  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 1.5.1
     7Stable tag: 1.5.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.5.2 =
     39* Updated instructions for shortcode
    3740
    3841= 1.5.1 =
     
    7275If 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.
    7376
    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 bottom
    76 * description_output - Where do you want the description of the Video displayed?  Accepts: top (default) or bottom
     77* 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
    7780
    7881== Shortcode Examples ==
    7982* [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_side is 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  
    1212    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.
    1313    <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>
    1717    </ul>
    1818
     
    2020    <ul>
    2121        <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_side is 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>
    2424    </ul>
    2525</div>
Note: See TracChangeset for help on using the changeset viewer.