php - Wordpress Featured image is pulling through the first post -
wordpress featured image pulling through first post instead of featured image of page.
<?php global $post; ?> <?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->id), array( 5600,1000 ), false, '' ); ?> <div style="background-image: url(<?php echo $src[0]; ?> );" class="articles-hero-image"> <h1 class="text-center"><?php echo get_the_title(); ?></h1> </div> this seems work on other pages blog page little different using page.php file instead of template. coming default template.
feels should easy , silly.
let me know if need additional code feel bit you'll need.
Comments
Post a Comment