Using twenty-eleven theme, need to change default template for new page from standard to sidebar.
anyone?
Using twenty-eleven theme, need to change default template for new page from standard to sidebar.
anyone?
You must be logged in to post a comment.
I would hook into the
new_page
action, and then useupdate_post_meta()
to update the post meta value for_wp_page_template
:You could hook into other actions, but they might stomp on your ability to use the default template. Using
new_page
will ensure that the callback only changes the page template meta data value when a new page is created initially.If it wont mess you up you could switch the template file names. Although every time the theme is updated you would probably have to do this over and over again.