mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-03 20:24:26 +00:00
First there were two, and now there are three -- in the @since versions that came before and that shall be. And so it will be, says nacin.
Props JustinSainton, SergeyBiryukov, DrewAPicture. Fixes #26713. git-svn-id: https://develop.svn.wordpress.org/trunk@26868 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -29,13 +29,14 @@
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Shortcodes
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Container for storing shortcode tags and their hook to call for the shortcode
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @name $shortcode_tags
|
||||
* @var array
|
||||
* @global array $shortcode_tags
|
||||
@@ -84,7 +85,8 @@ $shortcode_tags = array();
|
||||
* add_shortcode('baztag', 'baztag_func');
|
||||
* </code>
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
*
|
||||
* @param string $tag Shortcode tag to be searched in post content.
|
||||
@@ -100,7 +102,8 @@ function add_shortcode($tag, $func) {
|
||||
/**
|
||||
* Removes hook for shortcode.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
*
|
||||
* @param string $tag shortcode tag to remove hook for.
|
||||
@@ -118,7 +121,8 @@ function remove_shortcode($tag) {
|
||||
* shortcodes global by a empty array. This is actually a very efficient method
|
||||
* for removing all shortcodes.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
*/
|
||||
function remove_all_shortcodes() {
|
||||
@@ -171,7 +175,8 @@ function has_shortcode( $content, $tag ) {
|
||||
* without any filtering. This might cause issues when plugins are disabled but
|
||||
* the shortcode will still show up in the post or content.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
* @uses get_shortcode_regex() Gets the search pattern for searching shortcodes.
|
||||
*
|
||||
@@ -203,7 +208,8 @@ function do_shortcode($content) {
|
||||
* 5 - The content of a shortcode when it wraps some content.
|
||||
* 6 - An extra ] to allow for escaping shortcodes with double [[]]
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
*
|
||||
* @return string The shortcode search regular expression
|
||||
@@ -250,7 +256,7 @@ function get_shortcode_regex() {
|
||||
* Regular Expression callable for do_shortcode() for calling shortcode hook.
|
||||
* @see get_shortcode_regex for details of the match array contents.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
* @access private
|
||||
* @uses $shortcode_tags
|
||||
*
|
||||
@@ -284,7 +290,7 @@ function do_shortcode_tag( $m ) {
|
||||
* attribute as the value in the key/value pair. This allows for easier
|
||||
* retrieval of the attributes, since all attributes have to be known.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param string $text
|
||||
* @return array List of attributes and their value.
|
||||
@@ -322,7 +328,7 @@ function shortcode_parse_atts($text) {
|
||||
* If the $atts list has unsupported attributes, then they will be ignored and
|
||||
* removed from the final returned list.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param array $pairs Entire list of supported attributes and their defaults.
|
||||
* @param array $atts User defined attributes in shortcode tag.
|
||||
@@ -359,7 +365,8 @@ function shortcode_atts( $pairs, $atts, $shortcode = '' ) {
|
||||
/**
|
||||
* Remove all shortcode tags from the given content.
|
||||
*
|
||||
* @since 2.5
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @uses $shortcode_tags
|
||||
*
|
||||
* @param string $content Content to remove shortcode tags.
|
||||
|
||||
Reference in New Issue
Block a user