I want to make it so that the featured image only appears at the top of the 1st page of posts that are paginated with the <!--nextpage--> quick tag (in single.php)... but can't figure it out. Help?
Remove Featured Image from 2nd + pages of paginated post.
(2 posts) (2 voices)-
Posted 1 year ago #
-
add this code to the child theme functions.php (install bfBlank if you are not already using a child theme):
add_action( 'wp_head', 'remove_paged_featuredimage' ); function remove_paged_featuredimage() { if (is_single() && get_query_var('page')) remove_action( 'bf_featured', 'bf_featured_area' ); }Posted 1 year ago #
Reply
You must log in to post.