Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering how I would go about in Wordpress / PHP to update the rows associated with the $post_id that are mirrored from a meta box boxes and stored on a separate table called 'markers' when pressing save/update in a wordpress post.

This is what I am currently using to store the information into the table, a couple issues I am having is duplicated information, empty rows, and anytime information is changed a new row is created. Any help would be awesome.

add_action('save_post', 'save_markers');
function save_markers ($post_id) {
    if (defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE) 
        return;
    if ('locations' != $_POST['post_type'])
        return;
    if (!current_user_can( 'edit_post', $post_id ))
        return;

    global $wpdb;
    $name = get_post_meta($post_id, 'name', true);
    $type = get_post_meta($post_id, 'type', true);
    $neighborhood = get_post_meta($post_id, 'neighborhood', true);
    $address = get_post_meta($post_id, 'address', true);
    $delivery = get_post_meta($post_id, 'delivery', true);
    $phone = get_post_meta($post_id, 'phone', true);
    $monday = get_post_meta($post_id, 'monday', true);
    $tuesday = get_post_meta($post_id, 'tuesday', true);
    $wednesday = get_post_meta($post_id, 'wednesday', true);
    $thursday = get_post_meta($post_id, 'thursday', true);
    $friday = get_post_meta($post_id, 'friday', true);
    $saturday = get_post_meta($post_id, 'saturday', true);
    $sunday = get_post_meta($post_id, 'sunday', true);


    $sql="UPDATE markers SET name='$name', type='$type', neighborhood='$neighborhood', delivery='$delivery', phone='$phone, monday='$monday', tuesday='$tuesday', wednesday='$wednesday', thursday='$thursday', friday='$friday', saturday='$saturday', sunday='$sunday' WHERE id='$post_id'";
$result=$wpdb->query($sql);

    $wpdb->query("INSERT INTO markers(name, address, lat, lng, type, neighborhood, delivery, phone, monday, tuesday, wednesday, thursday, friday, saturday, sunday, post_id)VALUES('$name', '$address', '$lat','$lng', '$type', '$neighborhood', '$delivery', '$phone', '$monday', '$tuesday', '$wednesday', '$thursday', '$friday', '$saturday', '$sunday', '$post_id')");
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.