Add a filter on the list of post types for the settings pages

This commit is contained in:
Robin Cornett
2019-06-14 08:07:21 -04:00
parent 4a7f6ba2d4
commit 3e29680d38
@@ -224,7 +224,14 @@ class Display_Featured_Image_Genesis_Settings extends Display_Featured_Image_Gen
$options[ $post_type ] = $object->label;
}
return $options;
/**
* Add a filter on the list of post types which can be assigned a featured image, etc.
*
* @param array $options
*
* @since 3.1.0
*/
return apply_filters( 'displayfeaturedimagegenesis_get_post_types', $options );
}
/**