Changeset 1408564
- Timestamp:
- 05/02/2016 02:34:23 AM (10 years ago)
- Location:
- genesis-shortcode-generator/trunk
- Files:
-
- 4 added
- 3 edited
-
admin/assets/admin_test.js (added)
-
genesis-shortcode-generator.php (modified) (1 diff)
-
includes/Main.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
resources (added)
-
resources/front-end.css (added)
-
shortcodes/Clear.php (added)
Legend:
- Unmodified
- Added
- Removed
-
genesis-shortcode-generator/trunk/genesis-shortcode-generator.php
r1399883 r1408564 4 4 * Plugin URI: http://joshmallard.com 5 5 * Description: Supercharge the possibilities for WordPress content without bombarding users with thousands of options they'll never need or use 6 * Version: 2.0. 16 * Version: 2.0.0 7 7 * Author: Josh Mallard 8 8 * Author URI: http://joshmallard.com -
genesis-shortcode-generator/trunk/includes/Main.php
r1399865 r1408564 16 16 * @var string 17 17 */ 18 const VERSION = '2.0. 0';18 const VERSION = '2.0.1'; 19 19 20 20 /** … … 47 47 $this->get_shortcode_files(); 48 48 49 add_shortcode( 'gb_clear', array( GingerBeard_Clear::instance(), 'shortcode_build' ) ); 49 50 add_shortcode( 'genesis_column', array( GingerBeard_Columns::instance(), 'shortcode_build' ) ); 50 51 add_shortcode( 'genesis_featured_page', array( GingerBeard_Featured_Page::instance(), 'shortcode_build' ) ); … … 62 63 public function get_shortcode_files() { 63 64 65 require plugin_dir_path( __FILE__ ) . '../shortcodes/Clear.php'; 64 66 require plugin_dir_path( __FILE__ ) . '../shortcodes/Columns.php'; 65 67 require plugin_dir_path( __FILE__ ) . '../shortcodes/Featured_Page_Widget.php'; -
genesis-shortcode-generator/trunk/readme.txt
r1400900 r1408564 4 4 Tags: shortcodes, genesis 5 5 Requires at least: 3.5.1 6 Tested up to: 4.5 7 Stable tag: 2.0. 06 Tested up to: 4.5.1 7 Stable tag: 2.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 The GingerBeard Shortcodes plugin allows you to quickly add any default Genesis shortcodes as well as column shortcodes from your WYSIWYG 12 11 The 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 13 12 == Description == 14 13 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.14 Quickly add dynamic elements to the content on your Genesis websites. 16 15 17 **Note** 16 This plugin adds a button to any WYSIWYG on your site and allows you to quickly add: 18 17 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 22 to your site content. 20 23 21 24 == Installation == … … 51 54 == Changelog == 52 55 56 = 2.0.1 = 57 * Add back the "gb_clear" shortcode 58 * Update descriptions 59 53 60 = 2.0.0 = 54 61 * Moved shortcode functions to their own classes (transition for simpler customization and extension)
Note: See TracChangeset
for help on using the changeset viewer.