', $term_description );
endif;
?>
60,
'ignore_sticky_posts' => 0,
'tax_query' => array( array('taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array( 'post-format-quote',
'post-format-image',
'post-format-aside',
'post-format-status',
'post-format-chat',
'post-format-link',),
'operator' => 'NOT IN',
), ), );
$query = new WP_Query($args);
// Start the Loop.
while ( $query->have_posts() ) : $query->the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
if (is_sticky() && ! get_post_format() ):
get_template_part( 'template-parts/content', 'featured-article' );
elseif( !get_post_format() ):
get_template_part('template-parts/content','article-1-left');
else:
get_template_part('template-parts/content', get_post_format());
endif;
endwhile;
// Previous/next page navigation.
//abedul_paging_nav();
else :
// If no content, include the "No posts found" template.
get_template_part( 'template-parts/content', 'none' );
endif;
?>