You appear to be a bot. Output may be restricted
Description
Enqueue the internal CSS stylingThis code COULD be improved to accumulate ALL the appended CSS into one block and then produced during footer processing. Note: we also support media="print"
Usage
bw_enqueue_style( $atts, $content );
Parameters
- $atts
- ( array ) required – shortcode parameters – currently unused
- $content
- ( string ) required – the CSS to enqueue
Returns
voidSource
File name: oik-css/shortcodes/oik-css.phpLines:
1 to 5 of 5
function bw_enqueue_style( $atts, $content ) { stag( "style", null, null, kv( "type", "text/css" ) . kv( "media", "screen,print") ); e( $content ); etag( "style" ); }View on GitHub View on Trac