apply_filters( 'articlewave_tab_post_count', 2 ),
'orderby' => 'comment_count',
'order' => 'DESC',
'ignore_sticky_posts' => apply_filters( 'articlewave_tab_ignore_sticky_post' , 1 ),
);
$tabbed_query = new WP_Query( $tabbed_args );
if ( $tabbed_query->have_posts() ) {
echo '
';
while( $tabbed_query->have_posts() ) {
$tabbed_query->the_post();
?>
';
}
?>
apply_filters( 'articlewave_tab_post_count', 2 ),
'orderby' => 'date',
'order' => 'DESC',
'ignore_sticky_posts' => apply_filters( 'articlewave_tab_ignore_sticky_post' , 1 ),
);
$tabbed_query = new WP_Query( $tabbed_args );
if ( $tabbed_query->have_posts() ) {
echo '
';
while ( $tabbed_query->have_posts() ) {
$tabbed_query->the_post();
?>
';
}
?>