Changeset 2778915
- Timestamp:
- 09/01/2022 03:50:00 PM (4 years ago)
- Location:
- nested-shortcodes/trunk
- Files:
-
- 2 edited
-
outerbridge-nested-shortcodes.php (modified) (3 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nested-shortcodes/trunk/outerbridge-nested-shortcodes.php
r975074 r2778915 1 1 <?php 2 2 /* 3 Plugin Name: Outerbridge Nested Shortcodes4 Plugin URI: http ://outerbridge.co.uk/5 Description: A small plugin which allows you to use nested shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple "do_shortcode" filter as per the WordPress Codex to content and widgets - see http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes and http://codex.wordpress.org/Function_Reference/do_shortcode3 Plugin Name: Nested Shortcodes by Outerbridge 4 Plugin URI: https://outerbridge.co.uk/ 5 Description: A small plugin which allows you to use nested shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple "do_shortcode" filter as per the WordPress Codex to content and widgets - see [Shortcode_API](https://codex.wordpress.org/Shortcode_API#Nested_Shortcodes) and [do_shortcode](https://developer.wordpress.org/reference/functions/do_shortcode/) 6 6 Author: Outerbridge 7 Version: 1. 38 Author URI: http ://outerbridge.co.uk/7 Version: 1.4 8 Author URI: https://outerbridge.co.uk/ 9 9 License: GPL v2 10 10 */ … … 12 12 /** 13 13 * 14 * v1.4 220901 Tested and stable up to WP6.0 15 * 14 16 * v1.3 140829 Tested and stable up to WP4.0 15 *16 17 * v1.2 140430 Tested and stable up to WP3.9 17 18 * v1.1 131212 Tested and stable up to WP3.8 and updated author name … … 29 30 */ 30 31 31 define('FILTERPRIORITY', 10); 32 add_filter('the_content', 'do_shortcode', FILTERPRIORITY); 33 add_filter('widget_text', 'do_shortcode', FILTERPRIORITY); 34 ?> 32 define( 'FILTERPRIORITY', 10 ); 33 add_filter( 'the_content', 'do_shortcode', FILTERPRIORITY ); 34 add_filter( 'widget_text', 'do_shortcode', FILTERPRIORITY ); -
nested-shortcodes/trunk/readme.txt
r2585887 r2778915 1 1 === Outerbridge Nested Shortcodes === 2 2 Contributors: outerbridge 3 Author URI: http ://outerbridge.co.uk/3 Author URI: https://outerbridge.co.uk/ 4 4 Tags: shortcodes, nested, do_shortcode, the_content, text_widget 5 5 Requires at least: 4.0 6 Tested up to: 5.86 Tested up to: 6.0 7 7 Stable tag: trunk 8 8 … … 12 12 == Description == 13 13 14 A small plugin which allows you to use nested shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple "do_shortcode" filter as per the WordPress Codex to content and widgets - see http://codex.wordpress.org/Shortcode_API#Nested_Shortcodes and http://codex.wordpress.org/Function_Reference/do_shortcode14 A small plugin which allows you to use nested shortcodes (i.e. a shortcode within an enclosing shortcode) by implementing a simple "do_shortcode" filter as per the WordPress Codex to content and widgets - see [Shortcode_API](https://codex.wordpress.org/Shortcode_API#Nested_Shortcodes) and [do_shortcode](https://developer.wordpress.org/reference/functions/do_shortcode/) 15 15 16 16 … … 26 26 == Frequently Asked Questions == 27 27 28 = Are there any limitations? = 29 30 Yes. You can see the limitations [here](https://codex.wordpress.org/Shortcode_API#Limitations) 31 28 32 = Where do I get help with this plugin? = 29 33 … … 36 40 37 41 == Changelog == 42 43 = 1.4 = 44 - (01 Sep 2022) Tested and stable up to WP6.0 38 45 39 46 = 1.3 = … … 55 62 == Upgrade Notice == 56 63 64 = 1.4 = 65 - Tested and stable up to WP6.0 66 57 67 = 1.3 = 58 68 - Tested and stable up to WP4.0
Note: See TracChangeset
for help on using the changeset viewer.