You appear to be a bot. Output may be restricted
Description
Example hook for [bw_dash] shortcode
Usage
bw_dash__example( $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 21 of 21
function bw_dash__example( $shortcode="bw_dash" ) { $icons = bw_list_dashicons(); $class = null; wp_enqueue_style( 'dashicons' ); asort( $icons ); h3( "font=dashicons" ); foreach ( $icons as $icon ) { sdiv( "inline" ); span( "dashicons dashicons-$icon $class", null, kv( "text", $icon) ); epan(); e( $icon ); ediv(); } bw_genericons_example(); bw_texticons_example(); bw_svgicons_example(); }