You appear to be a bot. Output may be restricted
Description
Enqueue the internal CSS styling
This 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
void
Source
File name: oik-css/shortcodes/oik-css.php
Lines:
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" ); }