You appear to be a bot. Output may be restricted
Description
Create a link to the shortcode if in admin pages
Usage
bw_code_link( $shortcode );
Parameters
- $shortcode
- ( string ) required – the shortcode
Returns
voidSource
File name: oik/shortcodes/oik-codes.phpLines:
1 to 8 of 8
function bw_code_link( $shortcode ) { if ( is_admin() ) { BW_::alink( null, admin_url("admin.php?page=oik_sc_help&code=$shortcode"), $shortcode ); } else { e( $shortcode ); } e( " - " ); }View on GitHub View on Trac