Can't get secondary image to show on main page.
-
functions.php
if (class_exists('MultiPostThumbnails')) { $types = array('post', 'page', 'my_post_type'); foreach($types as $type) { new MultiPostThumbnails(array( 'label' => 'Secondary Image', 'id' => 'secondary-image', 'post_type' => $type ) ); } }
index.php
if (have_posts()): ?> <?php while (have_posts()) : the_post(); ?> <ul class="sticky_index"> <li class="sticky_article"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <div class="sticky_feature_title"> <h2> <?php the_title(); ?> </h2> </div> </a> <div class='sticky_feature_image'> <a href="<?php the_permalink() ?>" class="preview"> <!-- <?php if ( has_post_thumbnail() ) { ?> <?php $imgsrcparam = array( 'alt' => trim(strip_tags( $post->post_excerpt )), 'title' => trim(strip_tags( $post->post_title )), ); $thumbID = get_the_post_thumbnail( $post->ID, 'background', $imgsrcparam ); ?> <?php echo "$thumbID"; ?> <?php } ?> --> <?php if (class_exists('MultiPostThumbnails')) : MultiPostThumbnails::the_post_thumbnail(get_post_type(), 'secondary-image'); endif; ?> </a> </div> </li> </ul> <?php endwhile; ?> <?php endif; ?>
I have commented out the normal code I used for getting the thumbnail.
Right now it takes either the “video thumbnail” or the normal “featured thumbnail” and not the “secondary image” as a thumbnail.
(I have tried a lot and looked in the support section but can’t get it to work.)
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Can't get secondary image to show on main page.’ is closed to new replies.