WordPress is archive function

From Wiki @ Karl Jones dot com
Revision as of 18:03, 25 October 2016 by Karl Jones (Talk | contribs) (See also)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In WordPress, is_archive is a WordPress function which test whether or not the current page is an Archive Page.

It is used as a conditional Template Tag.

Description

An Archive is a Category, Tag, Author, Date, Custom Post Type or Custom Taxonomy based pages.

This is a boolean function, meaning it returns either TRUE or FALSE.

The function is used as a conditional WordPress Tag, like this:

<?php
if ( is_archive() ) {
    // write your code here ...
}
?>

See also

External links