Description
This plugin allows the custom header image to be replaced by the featured image of the current post or page, if present. Otherwise the ‘default’ custom header image is used.
Faq
Installation Instructions
- Upload the plugin files to the
/wp-content/plugins/plugin-name
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the ‘Plugins’ screen in WordPress
How can I disable the regular featured image from displaying on a single post or page?
For the Twenty Seventeen theme you can change the header.php file to disable the regular featured image.
For example:
(lines 44 – 49)
// If a regular post or page, and not the front page, show the featured image.
// if ( has_post_thumbnail() ( is_single() || ( is_page() ! twentyseventeen_is_frontpage() ) ) ) :
// echo 'div class="single-featured-image-header"';
// the_post_thumbnail( 'twentyseventeen-featured-image' );
// echo '/div!-- .single-featured-image-header --';
// endif;
What about foo bar?
N/A
Installation
- Upload the plugin files to the
/wp-content/plugins/plugin-name
directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the ‘Plugins’ screen in WordPress
Changelog
1.2
- Added width and height variables
1.1
- Solved misconfigured variables
1.01
- Changed function names to comply with policy
1.0
- Initial release