• Resolved shankar

    (@shankarweb)


    Hello sir.

    Thanks for the great plugin. its working fine for me. i have a issue is that I created a category page and i want to show all category thumbnails there. not category name. right now i am using this code for category listing :- <?php wp_list_categories(‘title_li=’); ?> . and i want to show category thumbnails. please help.

    Thanks in advance.

    https://www.ads-software.com/plugins/categories-images/

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m using this plugin on my themes and I can give you an example of my category page.

    <div class="thumbs cl">
    <?php foreach (get_categories() as $cat) : ?>
    <div class="cat-item">
    <a href="<?php echo get_category_link($cat->term_id); ?>" title="<?php echo $cat->cat_name; ?>">
    <img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" alt="<?php echo $cat->cat_name; ?>">
    <div class="name"><?php echo $cat->cat_name; ?></div>
    <span class="items"><?php _e('Total Movies', 'katastrof'); ?>
    &nbsp;<?php
    $catcount = $cat->count;
    echo $catcount;
    ?>
    </span></a>
    
    </div>
     <?php endforeach; ?>
    </div>

    as you see the category thumbnail can be visible using something like this
    <img src="<?php echo z_taxonomy_image_url($cat->term_id); ?>" alt="<?php echo $cat->cat_name; ?>">

    Plugin Author Muhammad

    (@elzahlan)

    Thanks ALBCODERS for your reply ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Category Image’ is closed to new replies.