You appear to be a bot. Output may be restricted
Description
Format a tabs block – for jQuery UI tabs 1.9.2 or higher
Usage
bw_format_tabs( $post, $atts, $selector );
Parameters
- $post
- ( object ) required – A post object
- $atts
- ( array ) required – Attributes array – passed from the shortcode
- $selector
- ( mixed ) required –
Returns
voidSource
File name: oik/shortcodes/oik-tabs.phpLines:
1 to 13 of 13
function bw_format_tabs( $post, $atts, $selector ) { $atts['title'] = get_the_title( $post->ID ); $thumbnail = bw_thumbnail( $post->ID, $atts ); $id = $selector . '-' . $post->ID; sdiv( "group", $id ); if ( $thumbnail ) { bw_format_thumbnail( $thumbnail, $post, $atts ); } e( bw_excerpt( $post ) ); bw_format_read_more( $post, $atts ); sediv( "cleared" ); ediv(); }View on GitHub View on Trac