WP Manifestindependent plugin directory
manifest / media / gk-taxonomy-images

GK Taxonomy Images

Simple plugin for easy adding featured images in WordPress Tag/Category pages

by GavickPro · github.com/gavickpro/gk-taxonomy-images · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/gavickpro/gk-taxonomy-images/archive/refs/heads/master.zip

Readme

GK-Taxonomy-Images

Simple plugin for easy adding featured images in WordPress Tag/Category pages

Usage on your theme

We suggest to use the following code in the category.php file in order to display the image on the category page:

<?php 

if(function_exists('gk_taxonomy_image')) {
    $category = get_the_category();
    $img = gk_taxonomy_image($category[0]->term_id, 'category-image', '', false);

    if($img) {
        echo $img;
    }
}

?>

The gk_taxonomy_image function retrieves up to 4 parameters:

  • term_id
  • CSS class names (can be separated by space)
  • other attributes (width, height etc.)
  • echo - decides if the function will echo the image directly or will return it as a string.

Read the full README on GitHub →