You appear to be a bot. Output may be restricted
Description
Display a table of information showing custom data and other content
Usage
$string = bw_table( $atts, $content, $tag );
Parameters
- $atts
- ( mixed ) optional – parameters to the shortcode
- $content
- ( mixed ) optional –
- $tag
- ( mixed ) optional –
Returns
string the "raw" content – that could be put through WP-syntaxSource
File name: oik/shortcodes/oik-table.phpLines:
1 to 10 of 10
function bw_table( $atts=null, $content=null, $tag=null ) { //bw_trace2(); $atts['numberposts'] = bw_array_get( $atts, 'numberposts', 10 ); $posts = bw_get_posts( $atts ); if ( $posts ) { bw_format_table( $posts, $atts ); } bw_clear_processed_posts(); return( bw_ret() ); }View on GitHub View on Trac