If is custom post type archive page

Check out is_post_type_archive() in the codex

if( is_post_type_archive('movie') )
{
    //do my thing
}

Leave a Comment