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.
SHARED BY