• dodoland

    (@dodoland)


    Hi,
    i use this code after post-title class to show category images next to the post title:

    <?php
    foreach((get_the_category()) as $category) {
    echo ‘<img src=”‘.get_bloginfo(“template_url”).’/img/icon/’ . $category->cat_name . ‘.png” alt=”‘ . $category->cat_name . ‘” />’;
    }
    ?>

    it works in content.php but doesn’t works in content-featured.php

    How can i fix it?

    Thanks

The topic ‘Problem content featured’ is closed to new replies.