Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author educatorteam

    (@educatorteam)

    Hi,

    You can create the following file in the root of your primary theme or child theme:

    taxonomy-ib_educator_category.php

    A very basic version of this file looks like this:

    <?php get_header(); ?>
    
    <?php
        while ( have_posts() ) : the_post();
            get_template_part( 'content', 'course' );
        endwhile;
    
        the_posts_pagination( array( 'mid_size' => 2 ) );
    ?>
    
    <?php get_footer(); ?>

    You will need to modify this file such that it uses your theme’s HTML structure.

    Thread Starter vinnylinux

    (@vinnylinux)

    I duplicated unintentionally. answer below ??

    Thread Starter vinnylinux

    (@vinnylinux)

    Works! Thank you ??

    I did not previously found this file in the template folder. So the question.

    Thanks again

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize categories page’ is closed to new replies.