Is there a way to change the Template of a page from Default Template to another programatically?
Leave a Reply
You must be logged in to post a comment.
Is there a way to change the Template of a page from Default Template to another programatically?
You must be logged in to post a comment.
Looking at the wp_postmeta table, you can see the page template is stored there.
Therefore, a simple call to
update_post_meta
(codex) should do the trick :The filename and extension is necessary, as per my example.