If is custom post type archive page

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)

1
1

Check out is_post_type_archive() in the codex

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

Leave a Comment