ID ) ) { if ( function_exists( 'carbon_get_post_meta' ) ) { $settings_local = carbon_get_post_meta( $post->ID, $key ); // reruns null if not exists } else { $settings_local = get_post_meta( $post->ID, $key, TRUE ); // returns empty string } } if ( isset( $settings_local ) && ! empty( $settings_local ) ) { return (string) $settings_local; } else { return FALSE; } } } }