Trying to add a logo on Category Archive page based on Category

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' ); ?>

I figured this out in case anyone wants to do similar:

<?php // ============================================================================= // VIEWS/GLOBAL/_CONTENT-THE-EXCERPT.PHP // ----------------------------------------------------------------------------- // Display of the_excerpt() for various entries. // ============================================================================= ?> <?php do_action( 'x_before_the_excerpt_begin' ); ?>
<?php if ( has_category('category-name' ) ) { 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' ); ?>

Hey @wowflak,

We’re glad that you’ve sorted this out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.