Plugin Directory

Changeset 2778915


Ignore:
Timestamp:
09/01/2022 03:50:00 PM (4 years ago)
Author:
outerbridge
Message:

Tested and stable up to WP6.0

Location:
nested-shortcodes/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • nested-shortcodes/trunk/outerbridge-nested-shortcodes.php

    r975074 r2778915  
    11<?php 
    22/*
    3 Plugin Name: Outerbridge Nested Shortcodes
    4 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_shortcode
     3Plugin Name: Nested Shortcodes by Outerbridge
     4Plugin URI: https://outerbridge.co.uk/
     5Description: 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/)
    66Author: Outerbridge
    7 Version: 1.3
    8 Author URI: http://outerbridge.co.uk/
     7Version: 1.4
     8Author URI: https://outerbridge.co.uk/
    99License: GPL v2
    1010*/
     
    1212/**
    1313 *
     14 * v1.4 220901 Tested and stable up to WP6.0
     15 *
    1416 * v1.3 140829 Tested and stable up to WP4.0
    15  *
    1617 * v1.2 140430 Tested and stable up to WP3.9
    1718 * v1.1 131212 Tested and stable up to WP3.8 and updated author name
     
    2930 */
    3031   
    31 define('FILTERPRIORITY', 10);
    32 add_filter('the_content', 'do_shortcode', FILTERPRIORITY);
    33 add_filter('widget_text', 'do_shortcode', FILTERPRIORITY);
    34 ?>
     32define( 'FILTERPRIORITY', 10 );
     33add_filter( 'the_content', 'do_shortcode', FILTERPRIORITY );
     34add_filter( 'widget_text', 'do_shortcode', FILTERPRIORITY );
  • nested-shortcodes/trunk/readme.txt

    r2585887 r2778915  
    11=== Outerbridge Nested Shortcodes ===
    22Contributors: outerbridge
    3 Author URI: http://outerbridge.co.uk/
     3Author URI: https://outerbridge.co.uk/
    44Tags: shortcodes, nested, do_shortcode, the_content, text_widget
    55Requires at least: 4.0
    6 Tested up to: 5.8
     6Tested up to: 6.0
    77Stable tag: trunk
    88
     
    1212== Description ==
    1313
    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_shortcode
     14A 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/)
    1515
    1616
     
    2626== Frequently Asked Questions ==
    2727
     28= Are there any limitations? =
     29
     30Yes.  You can see the limitations [here](https://codex.wordpress.org/Shortcode_API#Limitations)
     31
    2832= Where do I get help with this plugin? =
    2933
     
    3640
    3741== Changelog ==
     42
     43= 1.4 =
     44- (01 Sep 2022) Tested and stable up to WP6.0
    3845
    3946= 1.3 =
     
    5562== Upgrade Notice ==
    5663
     64= 1.4 =
     65- Tested and stable up to WP6.0
     66
    5767= 1.3 =
    5868- Tested and stable up to WP4.0
Note: See TracChangeset for help on using the changeset viewer.