Changeset 26868 for trunk/src/wp-includes/shortcodes.php
- Timestamp:
- 12/24/2013 06:56:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r25880 r26868 30 30 * @package WordPress 31 31 * @subpackage Shortcodes 32 * @since 2.5 32 * @since 2.5.0 33 33 */ 34 34 … … 36 36 * Container for storing shortcode tags and their hook to call for the shortcode 37 37 * 38 * @since 2.5 38 * @since 2.5.0 39 * 39 40 * @name $shortcode_tags 40 41 * @var array … … 85 86 * </code> 86 87 * 87 * @since 2.5 88 * @since 2.5.0 89 * 88 90 * @uses $shortcode_tags 89 91 * … … 101 103 * Removes hook for shortcode. 102 104 * 103 * @since 2.5 105 * @since 2.5.0 106 * 104 107 * @uses $shortcode_tags 105 108 * … … 119 122 * for removing all shortcodes. 120 123 * 121 * @since 2.5 124 * @since 2.5.0 125 * 122 126 * @uses $shortcode_tags 123 127 */ … … 172 176 * the shortcode will still show up in the post or content. 173 177 * 174 * @since 2.5 178 * @since 2.5.0 179 * 175 180 * @uses $shortcode_tags 176 181 * @uses get_shortcode_regex() Gets the search pattern for searching shortcodes. … … 204 209 * 6 - An extra ] to allow for escaping shortcodes with double [[]] 205 210 * 206 * @since 2.5 211 * @since 2.5.0 212 * 207 213 * @uses $shortcode_tags 208 214 * … … 251 257 * @see get_shortcode_regex for details of the match array contents. 252 258 * 253 * @since 2.5 259 * @since 2.5.0 254 260 * @access private 255 261 * @uses $shortcode_tags … … 285 291 * retrieval of the attributes, since all attributes have to be known. 286 292 * 287 * @since 2.5 293 * @since 2.5.0 288 294 * 289 295 * @param string $text … … 323 329 * removed from the final returned list. 324 330 * 325 * @since 2.5 331 * @since 2.5.0 326 332 * 327 333 * @param array $pairs Entire list of supported attributes and their defaults. … … 360 366 * Remove all shortcode tags from the given content. 361 367 * 362 * @since 2.5 368 * @since 2.5.0 369 * 363 370 * @uses $shortcode_tags 364 371 *
Note: See TracChangeset
for help on using the changeset viewer.