Hi,
I am trying to add a logo/image to show on certain post types on the category archive page. In my case I want to show a logo only on posts that fall under the “news-pulse” category.
Here is the code I added to content-the-excerpt.php:
<?php // ============================================================================= // VIEWS/GLOBAL/_CONTENT-THE-EXCERPT.PHP // ----------------------------------------------------------------------------- // Display of the_excerpt() for various entries. // ============================================================================= ?> <?php do_action( 'x_before_the_excerpt_begin' ); ?>
<?php
if ( is_category( 'news-pulse' ) ) {
echo '';
}
?>
<?php do_action( 'x_after_the_excerpt_begin' ); ?>
<?php the_excerpt(); ?>
<?php do_action( 'x_before_the_excerpt_end' ); ?>
<?php do_action( 'x_after_the_excerpt_end' ); ?>