Display Featured Image for Genesis
This plugin works within the Genesis Framework, to display your post/page featured images in new and fun ways. For now, an HTML5 theme is required.
Description
This plugin takes a different approach to how we use and display featured images for posts and pages. Instead of simply reusing an image which already exists in the post/page content, the plugin anticipates that you will want to use lovely large images for your featured images, but to do so intelligently. Depending on what you upload, the plugin will:
- display the image as a backstretch (screen width) image if the image is wider than your site's Large Media Setting.
- display the image above your post/page content, centered and up to the width of the content, if your image is larger than your Medium Media Setting, and less than or equal to your Large Media Setting.
- display nothing if your featured image width is less than or equal to your Medium Media Setting.
- display nothing if your featured image is already displayed in your content (the original image, not a resized version).
Requirements
- WordPress 3.8, tested up to 4.0
- the Genesis Framework
Installation
Upload
- Download the latest tagged archive (choose the "zip" option).
- Go to the Plugins -> Add New screen and click the Upload tab.
- Upload the zipped archive directly.
- Go to the Plugins screen and click Activate.
Manual
- Download the latest tagged archive (choose the "zip" option).
- Unzip the archive.
- Copy the folder to your
/wp-content/plugins/directory. - Go to the Plugins screen and click Activate.
Check out the Codex for more information about installing plugins manually.
Git
Using git, browse to your /wp-content/plugins/ directory and clone this repository:
git clone git@github.com:robincornett/display-featured-image-genesis.git
Then go to your Plugins screen and click Activate.
Frequently Asked Questions
How do I stop the featured image action from showing on my custom post types?
You'll want to add a filter to your theme (functions.php file). Here's an example:
add_filter( 'display_featured_image_genesis_skipped_posttypes', 'rgc_skip_post_types' );
function rgc_skip_post_types( $post_types ) {
$post_types[] = 'listing';
$post_types[] = 'staff';
return $post_types;
}
Credits
- Built by Robin Cornett
Changelog
###1.0.1
- added the filter for certain post types, and optional filter for other custom post types
###1.0.0
- Initial release on Github