Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('save_post','changeTemplateOnSave');
- function changeTemplateOnSave(){
- global $post;
- $curr_tmp = get_post_meta($post->ID, '_wp_page_template', true);
- $parent_tmp = get_post_meta($post->post_parent, '_wp_page_template', true);
- if($post->post_parent)
- update_post_meta($post->ID,'_wp_page_template',$parent_tmp,$curr_tmp);
- }
Advertisement
Add Comment
Please, Sign In to add comment