remove_shortcode( string $tag )
Removes hook for shortcode.
Description Description
Parameters Parameters
- $tag
-
(string) (Required) Shortcode tag to remove hook for.
Source Source
File: wp-includes/shortcodes.php
function remove_shortcode( $tag ) { global $shortcode_tags; unset( $shortcode_tags[ $tag ] ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Expand full source codeCollapse full source code