If I need to check custom post post type is movie, I can use following code.
if ( 'movie' == get_post_type() )
I need to check, if it is custom post post type Archives Page? ( www.domain.com/movie)
If I need to check custom post post type is movie, I can use following code.
if ( 'movie' == get_post_type() )
I need to check, if it is custom post post type Archives Page? ( www.domain.com/movie)
Check out is_post_type_archive() in the codex
if( is_post_type_archive('movie') )
{
//do my thing
}