• Skip to main content
  • Skip to primary sidebar

WordPress, Genesis Framework and Storefront customization tutorials

  • Archive
    • Free
    • Premium
  • Blog
  • About
  • Contact
  • Newsletter
  • Membership
  • Login
Home ยป Custom Post Type Taxonomy Archive Page in Genesis

Custom Post Type Taxonomy Archive Page in Genesis

Create a file with name taxonomy-yourtaxonomy.php

<?php

//Include taxonomy template file
add_action('genesis_entry_header', 'add_custom_category');
function add_custom_category(){
    include('loop/taxonomy-archive.php');
}

//Add wrapper open 
add_action('genesis_before_while', 'add_grid_wrapper_open');
function add_grid_wrapper_open(){
    echo '<div class="grid row">
            
        ';
}

//Add wrapper close 
add_action('genesis_after_endwhile', 'add_grid_wrapper_close');
function add_grid_wrapper_close(){
    echo '
        </div>';
}
genesis();

Create another file in loop folder with name taxonomy-archive.php

<div class="card melo">
    <a href="<?php the_permalink(); ?>">
        <?php the_post_thumbnail( 'full', array('class' => 'card-img-top') ); ?>
    </a>
        <div class="card-body">
            <h4 class="card-title"><?php the_title(); ?></h4>
            <div class="card-text">
               
            </div>
        </div>
</div>

Filed Under: Free Tagged With: CPT, Genesis

About Gabor Flamich

I'm a web developer and designer based in Budapest, Hungary. In recent years, I've documented hundreds of solutions I came across during development. This site is an archive for useful code snippets on WordPress, Genesis Framework and WooCommerce. If You have any questions related to WordPress development, get in touch!

Primary Sidebar

Gabor Flamich

Hi! I'm Gabor.
I write tutorials on WordPress and WooCommerce.

MacBook

12 Essential Snippets for Genesis Developers

Subscribe to my Newsletter to view my basic collection of Genesis snippets that I use for my projects!

Sign Up for Free
  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Twitter
  • YouTube
UpdraftPlus Premium

Tags

ACF Ajax Analytics API Bootstrap Breadcrumb category CPT CSS fetch Genesis Google Maps Gutenberg HTML Isotope JavaScript jQuery loop Map Menu Parallax PHP SASS SEO SQL Storefront SVG tab tag manager tags Taxonomy Tool upsell Webpack Wholesale WooCommerce WordPress WPML

Disclosure: Some of the links in this site are affiliate links. I will be paid a commission if you use this link to make a purchase.

  • Privacy Policy / Terms of Service
© 2023 WP Flames - All Right Reserved