Advertisement
Guest User

Untitled

a guest
Dec 21st, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. add_action('save_post', 'save_details');
  2. function save_details(){
  3. global $post;
  4.  
  5. if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
  6. return $post_id;
  7. } else {
  8.  
  9. // Custom Page
  10. update_post_meta($post->ID, "featured_title", $_POST["featured_title"]);
  11. update_post_meta($post->ID, "featured_img", $_POST["featured_img"]);
  12.  
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement