Custom Archive Page Template

This snippet allows you to use a custom template for specific post type archives, providing more control over archive layouts.

PHP

function custom_archive_template($archive_template) {
    if (is_post_type_archive('book')) {
        $archive_template = dirname(__FILE__) . '/archive-book.php';
    }
    return $archive_template;
}
add_filter('archive_template', 'custom_archive_template');

Snippet Feedback

Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.

Did it work?

Save Snippet

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.