This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?pjp | |
function banana__query_modifications($query) { | |
if ($query->is_main_query() && get_query_var('post_type') == 'faqs') { | |
$query->set('posts_per_page', -1); | |
$query->set('orderby', 'taxonomy'); | |
$query->set('order', 'DESC'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="faqs accordion"> | |
<?php $cat_name = null; while (have_posts()) : the_post(); ?> | |
<?php $terms = get_the_terms($post->ID, 'categories'); | |
if ($terms && !is_wp_error($terms)) : | |
if ($cat_name != $terms[0]->name) : | |
$cat_name = $terms[0]->name; ?> | |
<h2><?php echo $cat_name; ?></h2> | |
<?php endif; ?> |