%s
', $term_description ); endif; ?>
60, 'ignore_sticky_posts' => 0, ); $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_template_part( 'template-parts/content', get_post_format() ); elseif( ! get_post_format() ): get_template_part('template-parts/content','article-1'); else: get_template_part('template-parts/content', get_post_format()); endif; endwhile; // Previous/next page navigation. //aguafuerte_paging_nav(); else : // If no content, include the "No posts found" template. get_template_part( 'template-parts/content', 'none' ); endif; ?>