Plugin Directory

Changeset 1408564


Ignore:
Timestamp:
05/02/2016 02:34:23 AM (10 years ago)
Author:
joshlimecuda
Message:

2.0.1

Location:
genesis-shortcode-generator/trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • genesis-shortcode-generator/trunk/genesis-shortcode-generator.php

    r1399883 r1408564  
    44 * Plugin URI:        http://joshmallard.com
    55 * Description:       Supercharge the possibilities for WordPress content without bombarding users with thousands of options they'll never need or use
    6  * Version:           2.0.1
     6 * Version:           2.0.0
    77 * Author:            Josh Mallard
    88 * Author URI:        http://joshmallard.com
  • genesis-shortcode-generator/trunk/includes/Main.php

    r1399865 r1408564  
    1616     * @var     string
    1717     */
    18     const VERSION = '2.0.0';
     18    const VERSION = '2.0.1';
    1919
    2020    /**
     
    4747        $this->get_shortcode_files();
    4848
     49        add_shortcode( 'gb_clear', array( GingerBeard_Clear::instance(), 'shortcode_build' ) );
    4950        add_shortcode( 'genesis_column', array( GingerBeard_Columns::instance(), 'shortcode_build' ) );
    5051        add_shortcode( 'genesis_featured_page', array( GingerBeard_Featured_Page::instance(), 'shortcode_build' ) );
     
    6263    public function get_shortcode_files() {
    6364
     65        require plugin_dir_path( __FILE__ ) . '../shortcodes/Clear.php';
    6466        require plugin_dir_path( __FILE__ ) . '../shortcodes/Columns.php';
    6567        require plugin_dir_path( __FILE__ ) . '../shortcodes/Featured_Page_Widget.php';
  • genesis-shortcode-generator/trunk/readme.txt

    r1400900 r1408564  
    44Tags: shortcodes, genesis
    55Requires at least: 3.5.1
    6 Tested up to: 4.5
    7 Stable tag: 2.0.0
     6Tested up to: 4.5.1
     7Stable tag: 2.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 The GingerBeard Shortcodes plugin allows you to quickly add any default Genesis shortcodes as well as column shortcodes from your WYSIWYG
    12 
     11The Genesis Shortcode Generator plugin allows you to quickly add any default Genesis shortcodes, columns, and widgets to your content via an added button to your WordPress WYSIWYG
    1312== Description ==
    1413
    15 This plugin adds a button to your WYSIWYG allowing for quick addition of default [Genesis Shortcodes](http://my.studiopress.com/docs/shortcode-reference/), Genesis Widgets, as well as column shortcodes.
     14Quickly add dynamic elements to the content on your Genesis websites.
    1615
    17 **Note**
     16This plugin adds a button to any WYSIWYG on your site and allows you to quickly add:
    1817
    19 The columns shortcodes require that the first column in the series contains a `position=“first”` within the shortcode.
     18* Columns
     19* The default [Genesis Shortcodes](http://my.studiopress.com/docs/shortcode-reference/)
     20* The default Genesis Widgets
     21
     22to your site content.
    2023
    2124== Installation ==
     
    5154== Changelog ==
    5255
     56= 2.0.1 =
     57* Add back the "gb_clear" shortcode
     58* Update descriptions
     59
    5360= 2.0.0 =
    5461* Moved shortcode functions to their own classes (transition for simpler customization and extension)
Note: See TracChangeset for help on using the changeset viewer.