You appear to be a bot. Output may be restricted
Description
Query if the shortcode is already registeredOther plugins may have already registered the shortcode so there's no need to do it again
Usage
$registered = oik_registered_to_shortcake( $shortcode );
Parameters
- $shortcode
- ( string ) required – the shortcode tag
Returns
registered the registered shortcode's definitionSource
File name: oik/oik-shortcake.phpLines:
1 to 4 of 4
function oik_registered_to_shortcake( $shortcode ) { $registered = shortcode_ui_get_register_shortcode( $shortcode ); return( $registered ); }View on GitHub View on Trac