You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_link] shortcode
Usage
bw_link__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_link –
Returns
voidSource
File name: oik/shortcodes/oik-link.phpLines:
1 to 9 of 9
function bw_link__syntax( $shortcode="bw_link" ) { $syntax = array( "id" => BW_::bw_skv( __( "id", "oik" ), "<i>" . __( "ID", "oik" ) . "</i>|<i>" . __( "URL", "oik" ) . "</i>", __( "ID of the post to link to or external URL", "oik" ) ) , "text" => BW_::bw_skv( "<i>" . __( "post title", "oik" ) . "</i>", "<i>" . __( "text", "oik" ) . "</i>", __( "Text for the link", "oik" ) ) , "title" => BW_::bw_skv( "<i>" . __( "post title", "oik" ) . "</i>", "<i>" . __( "tool tip string", "oik" ) . "</i>", __( "Tool tip text", "oik" ) ) , "href,url,src,link" => BW_::bw_skv( null, "<i>" . __( "URL", "oik" ) . "</i>", __( "URL to link to", "oik" ) ) ); $syntax += _sc_classes(); return( $syntax ); }View on GitHub View on Trac