Skip to content

Instantly share code, notes, and snippets.

@jhned
Created September 21, 2016 14:44
Show Gist options
  • Save jhned/fcba58b1434d647663dc168ac33488bc to your computer and use it in GitHub Desktop.
Save jhned/fcba58b1434d647663dc168ac33488bc to your computer and use it in GitHub Desktop.
check options AND defaults!
$fpt_options = array();
if ( array_key_exists( $pt_key, $options )
&& is_array( $options[ $pt_key ] )
&& array_key_exists( $post_type, $defaults[ $pt_key ] )
&& is_array( $options[ $pt_key ][ $post_type ] )
) {
$fpt_options = $options[ $pt_key ][ $post_type ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment