I don’t think you’re actually getting the post ID sent by the javascript.
function toggle_task_status () {
$post_id = $_POST['data']['post_id'];
$update = update_post_meta($post_id , 'task_status', 'open');
if($update){
wp_send_json('success');
} else {
wp_send_json('fail');
}
wp_die();
}
and then in your javascript
success: function (response) {
console.log(response); // should be either 'success' or 'fail'
}
Related Posts:
- Individual Widgets per Page
- Apply the_content filter to a custom field with multiple values
- Meta Query with AND & OR?
- Problem with serialized arrays in custom meta
- Adding another state (spam, reject, approve) to wordpress comments?
- WP doesn’t show Array Custom Fields?
- Filter archive.php by custom meta
- How do I search an array stored in a custom-field using WP_Query?
- Get updated meta data after save_post hook
- Custom text-only header
- How to save custom fields for attachments
- How to get a meta value from all post
- Adding existing user custom field value to a woocommerce product [closed]
- How to save values of a custom input field on the Network > Site Info screen
- How to reload the role specific registration form on validation errors?
- Exclude custom post type from search by custom field value?
- Currency (price) formating on custom fields
- Adding Custom Text Area to WooCommerce Product
- Get multiple custom field values in a $wpdb query [duplicate]
- add meta box using function.php
- Order by value in serialized custom field
- Custom image sizes for custom field media uploads
- converting custom field date format
- How do I exclude posts by custom field value?
- Buddypress Add unserialized Profile Fields in Members Loop [closed]
- Add Paypal Button programmatically
- How do I use wp_query for WordPress search?
- Nav Menu – Add class based on meta keys
- Eliminating the appearance of a specific custom field in a post
- Conditional custom field query
- Conditionally hide or show woocommerce product variation in fontend by custom field
- custom meta box text field: how to limit to alpha or numeric only
- Accessing loop functions (e.g the_title or the_content) from post ID
- Create an Array of Specific Custom Post Meta
- custom avatar removal
- Possible to add a meta field for css attribute to the editor Advanced panel?
- Excluding Specific Fields from Profile Builder Registration Form
- Send email with custom fields after new draft is saved or new post published
- How to create a shortcode to print specific values stored in a post meta array?
- How to add upload video option in wordpress for user?
- Set post to unpublished after one week depending on condition
- Custom WP_Query for WordPress Search Results with meta_query
- Change order of posts
- Meta Query And/Or
- URL Rewrite fires when retrieving a custom value?
- How to store post meta in an array
- Efficiently sort only certain categories by custom field
- How can I do a variable for meta_query?
- Set checkbox as checked by default in a metabox
- ACF form edit front end post title does not change permalink
- How to list Category list in ACF Pro’s Select Field to choose from [closed]
- Singleton Custom Field (Meta Box)
- Can I use a Custom Field as the Featured Image URL?
- Display custom field & value correctly on page
- Displaying custom filed content instead of post content
- Copy price categories to custom field
- Save all the post tags inside a custom field
- Sanitize user input fields before wp_insert_post
- Use Advanced Custom Fields – replace line of code that hardcodes the tag into the template
- How to update a custom field in all posts with the value of another custom field in the same post?
- Advanced Custom Fields and Post Meta Fields Relation
- Set featured image from custom field URL
- Best Way to get facebook share count and update using wp_schedule_event or any other method
- Filter posts by custom field (Advanced Custom Fields)
- KEY and VALUE custom field issue
- Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts?
- Stripping and/or altering the content of a custom field (video URL)
- Custom field outside the loop and inside an array
- WP E-Commerce Custom Meta > Serialized array
- Display Additional Info
- How do I upload file through custom field, save it to database and get it
- Woocommerce products search with custom fields
- Convert author metadata to a custom field
- Custom pages or Custom Posts
- get_avatar filter is not working as per requirement
- Is it possible to add Term Meta Fields to a WooCommerce Attribute?
- Saving Custom Field that includes Quotation marks
- WordPress Admin – Automatically Sort Custom Posts by Custom Field Date Value in d-m-Y Fomat
- how to execute custom field for structured data?
- Saving custom form data
- select user with all meta field and field value. I am use Below Query for this ,So any of know another way to fast query instead of below query?
- Retrieve Google API JSON data and store as WordPress Custom Fields
- register_form, custom field not submitted on first try
- meta_query ‘compare’ => ‘!=’ not working
- Echo out custom fields in comments
- Why WordPress takes time to make request to save post?
- Show comon custom field results?
- Make custom user_meta as permalink for post
- Creating Structured Documents (books) in WordPress?
- Filter query based on date in custom field
- Display Child Page with custom fields within Parent Page
- Convert all dates in field to Unix time, except those already in Unix time
- Custom fields: my custom checkbox area doesn’t seem to work
- get_post_custom_values not working
- Pagination not displaying correct number of pages
- Show div based on custom meta value
- add multiple values (array) to post meta_input
- Assign class to Drop Down Selections in WooCommerce Products Custom Fields
- Show/Hide Featured Image or replace it with custom field [closed]
- Archive for custom fields?