Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    The pre_get_posts code snippet from image 1.png as is, isn’t going to affect your faq_category and faq_tags at all because the is_category() and is_tag() checks in there are for the out of box category and post_tag taxonomies that come with WordPress. Also, as far as I’m aware, you shouldn’t be needing to filter these in as it should be showing the CPTs in the term archives for the associated taxonomies already.

    What template are you expecting the taxonomy term archive urls to use? https://ghardwar.com/faq_taxonomy/home-loan-india/ It’s possible it is falling back to something like archive.php which may be appropriated for some other stuff in your current theme setup. See https://developer.www.ads-software.com/themes/basics/template-hierarchy/ for more information there.

    Regarding the 404 error part, it’s possible you need to flush your permalinks after the move from plugin to theme files. You can do that by simply visiting the permalinks settings page, and hit save without changing anything.

    Thread Starter Vinay Shukla

    (@ghardwar404)

    Hi, I have seperated the code in a plugin file for my site, upon activating that plugin the faq post type and categories plus tag taxonomy comes in backend but its not displaying at front end, what can i do, can you sugest me how do i disply it in front end archive, its not working, its showing another template of property post type,

    https://ghardwar.com/faq_tags/home-loan-india/page/2/

    here is the archive.php content in my theme, I am using wp residence theme.

    <?php
    // Archive Page
    // Wp Estate Pack
    get_header();
    $options    =   wpestate_page_details('');
    $blog_unit  =   esc_html ( get_option('wp_estate_blog_unit','') ); 
    global $no_listins_per_row;
    $no_listins_per_row =   intval( get_option('wp_estate_blog_listings_per_row', '') );
    ?>
    
    <div class="row"> 
        <?php get_template_part('templates/breadcrumbs'); ?>
        <div class=" <?php print esc_html($options['content_class']);?> ">
              <?php get_template_part('templates/ajax_container'); ?>
              <h1 class="entry-title">
                 <?php 
                 if (is_category() ) {
                        printf(__('Category Archives: %s', 'wpestate'), '<span>' . single_cat_title('', false) . '</span>');
                 }else if (is_day()) {
                        printf(__('Daily Archives: %s', 'wpestate'), '<span>' . get_the_date() . '</span>'); 
                 } elseif (is_month()) {
                        printf(__('Monthly Archives: %s', 'wpestate'), '<span>' . get_the_date(_x('F Y', 'monthly archives date format', 'wpestate')) . '</span>'); 
                 } elseif (is_year()) {
                        printf(__('Yearly Archives: %s', 'wpestate'), '<span>' . get_the_date(_x('Y', 'yearly archives date format', 'wpestate')) . '</span>');
                 } else {
                    _e('Blog Archives', 'wpestate'); 
                 }
                
                 ?>
              </h1>
              <div class="blog_list_wrapper">
              <?php   
               while (have_posts()) : the_post();
                    if($blog_unit=='list'){
                        get_template_part('templates/blog_unit');
                    }else{
                        get_template_part('templates/blog_unit2');
                    }       
               endwhile;
               wp_reset_query();
               ?>
               </div>
            <?php kriesi_pagination('', $range = 2); ?>    
    
        </div>
           
    <?php  include(locate_template('sidebar.php')); ?>
    </div>   
    <?php get_footer(); ?>
    Plugin Contributor Michael Beckwith

    (@tw2113)

    The BenchPresser

    Just to double check this detail, you set the “has archives” option to true for the post types in question, correct?

    Other than that, I’m not sure what’s going on and what may be affecting the queries in question.

    Edit: to extend comments, the archive.php file looks fine and isn’t changing queries at all from what I can see, so it should be getting used as expected here. What posts are found to be displayed with it, is the issue here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Category archieve not displaying posts’ is closed to new replies.