ankitpokhrel/Dynamic-Featured-Image

Retrieve the second featured image in PHP

AkremBelkahla opened this issue · 1 comments

Hello,

To show the first featured image in WP, we use :

<?php the_post_thumbnail_url( ); ?>

How can i show the second featured image in PHP ?

Thanks

You can do something like this.

global $dynamic_featured_image;
$second_featured_image = $dynamic_featured_image->get_nth_featured_image( 2 );

Here is the list of all available methods.