You appear to be a bot. Output may be restricted
Description
Implement the [wf_ticker] shortcode
Usage
$string = oikwf_ticker( $atts );
Parameters
- $atts
- ( array ) optional – array of shortcode attributes
Returns
string expanded shortcodeSource
File name: oik-working-feedback/shortcodes/oik-wf-ticker.phpLines:
1 to 16 of 16
function oikwf_ticker( $atts=null ) { oik_require( "shortcodes/oik-working-feedback.php", "oik-working-feedback" ); $company = bw_array_get_dcb( $atts, "company", "company", "oikwf_default" ); oikwf_enqueue_script( "ticker" ); oikwf_enqueue_style( "ticker-style" ); sdiv( null, "rsswidget" ); sul( "js-hidden", "js-news" ); oikwf_links( $company ); eul(); ediv(); //bw_jquery( "#js-news", "ticker", "{ 'displayType': 'fade', 'pauseOnItems': '1000000' }"); bw_jquery( "#js-news", "ticker" ); return( bw_ret()); }