Last active
March 12, 2025 17:19
-
-
Save szepeviktor/fcbd408862e72dde547e4eb6f79cc94e to your computer and use it in GitHub Desktop.
Programatically add custom post type template files to WordPress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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