Trying to add a page template for my custom post type from a plugin, but it will not display in the template dropdown unless file is in theme
The filter hook you’re using is theme_<post type>_templates, which means that the <post type> part is dynamic and it’s the post type in which you want the custom template be added to the Template dropdown. So since the template is enabled for three post types, you would do so to add the template to the … Read more