add blog page 2+ setting

originally the featured image doesn't show on subsequent pages, but some
people might want it to. needs documentation.
This commit is contained in:
Robin Cornett
2015-04-09 22:16:36 -04:00
parent aa96b77f25
commit a68e201116
3 changed files with 46 additions and 8 deletions
@@ -123,13 +123,20 @@ class Display_Featured_Image_Genesis {
) );
}
//* new setting for titles added in 2.0.0
// new setting for titles added in 2.0.0
if ( empty( $displaysetting['keep_titles'] ) ) {
$this->update_settings( array(
'keep_titles' => 0
) );
}
// new setting for subsequent pages added in 2.2.0
if ( empty( $displaysetting['is_paged'] ) ) {
$this->update_settings( array(
'is_paged' => 0
) );
}
}
/**