Hello, i want to display in post view a different feature image so i install a plugin for multiple post images.
This works just fine. But how can i remove the first feature image from my post view only.
Thanks
<header class="entry-header<?php if ( '' == get_the_post_thumbnail()) : ?> no-image<?php endif; ?>" <?php if ( has_post_thumbnail()) : ?> style="background-image: url('<?php echo $image_url ?>');"<?php endif; ?>>
<?php if ( has_post_thumbnail() && !post_password_required() ) : ?>
<?php do_action('photo_before_post_image'); ?>
<div class="entry-thumbnail">
<?php if(is_single() || is_page()) : ?>
<?php echo gk_post_thumbnail_caption(); ?>
<?php endif; ?>
</div>
<?php do_action('photo_after_post_image'); ?>
<?php endif; ?>
<?php if(is_sticky()) : ?>
<sup><i class="gk-icon-star"></i></sup>
<?php endif; ?>
</header>