Skip to content

Instantly share code, notes, and snippets.

@szepeviktor
Last active March 12, 2025 17:19
Show Gist options
  • Save szepeviktor/fcbd408862e72dde547e4eb6f79cc94e to your computer and use it in GitHub Desktop.
Save szepeviktor/fcbd408862e72dde547e4eb6f79cc94e to your computer and use it in GitHub Desktop.
Programatically add custom post type template files to WordPress
<?php
/*
* Plugin Name: Add cpt templates
*/
add_filter(
'template_include',
function ($template) {
if (is_singular('cpt')) {
return __DIR__ . '/cpt-template/single-cpt.php';
}
if (is_tax('cpt-category')) {
return __DIR__ . '/cpt-template/category-cpt.php';
}
if (is_post_type_archive('cpt')) {
return __DIR__ . '/cpt-template/archive-cpt.php';
}
return $template;
},
10,
1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment