Fix strict arrays

This commit is contained in:
Robin Cornett
2015-12-30 15:53:19 -05:00
parent 2673641640
commit 8560bf4689
5 changed files with 12 additions and 13 deletions
@@ -24,7 +24,7 @@ class Display_Featured_Image_Genesis_RSS {
$skipped_types = apply_filters( 'display_featured_image_genesis_skipped_posttypes', $post_types );
// if the user isn't sending images to the feed, we're done
if ( ! $feed_image || ( in_array( get_post_type(), $skipped_types ) ) ) {
if ( ! $feed_image || ( in_array( get_post_type(), $skipped_types, true ) ) ) {
return;
}