Is_post_type is now deprecated. I'm not sure if I understand how to properly use Post_type_exists instead.
I want to set up a conditional if/else to verify if a post is a specific post type. Suggestions?
Is_post_type is now deprecated. I'm not sure if I understand how to properly use Post_type_exists instead.
I want to set up a conditional if/else to verify if a post is a specific post type. Suggestions?
It's not deprecated. try using something like:
if( $post->post_type == 'page' ) echo "This is a Page";
Cool. I could've sworn I came across something relating to post type that was short lived in version 3.0. Thanks.
You must log in to post.