Changeset 31243
- Timestamp:
- 01/19/2015 08:39:10 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/shortcodes.php
r31242 r31243 101 101 * @uses $shortcode_tags 102 102 * 103 * @param string $tag shortcode tag to remove hook for.103 * @param string $tag Shortcode tag to remove hook for. 104 104 */ 105 105 function remove_shortcode($tag) { … … 131 131 * @since 3.6.0 132 132 * 133 * @global array $shortcode_tags 134 * @param string $tag 135 * @return boolean 133 * @global array $shortcode_tags List of shortcode tags and their callback hooks. 134 * 135 * @param string $tag Shortcode tag to check. 136 * @return bool Whether the given shortcode exists. 136 137 */ 137 138 function shortcode_exists( $tag ) { … … 181 182 * @since 2.5.0 182 183 * 183 * @ uses $shortcode_tags184 * 185 * @param string $content Content to search for shortcodes 184 * @global array $shortcode_tags List of shortcode tags and their callback hooks. 185 * 186 * @param string $content Content to search for shortcodes. 186 187 * @return string Content with shortcodes filtered out. 187 188 */
Note: See TracChangeset
for help on using the changeset viewer.