You appear to be a bot. Output may be restricted
Description
Syntax hook for [bw_dash] shortcode
Usage
bw_dash__syntax( $shortcode );
Parameters
- $shortcode
- ( mixed ) optional default: bw_dash –
Returns
void
TO DO
Add SVG icons
Source
File name: oik-bob-bing-wide/shortcodes/oik-dash.php
Lines:
1 to 17 of 17
function bw_dash__syntax( $shortcode="bw_dash" ) { $icons = bw_list_dashicons(); array_shift( $icons ); $values = implode( '|', $icons ); oik_require( "shortcodes/oik-gener.php", "oik-bob-bing-wide" ); $icons = bw_list_genericons(); $values .= "|" ; $values .= implode( '|', $icons ); $icons = bw_list_texticons(); $values .= "|" ; $values = implode( '|', $icons ); $syntax = array( bw_skv( null, "text", "Dash icon to display" ) , "icon,0" => bw_skv( "menu", $values, "Dash icon to display" ) , "class,1" => bw_skv( null, "<i>classnames</i>", "CSS classes" ) ); return( $syntax ); }