Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Saving repeated option values when querying in Published, draft and all

I’m having some dificulties in understaning what’s going in your code. But I would suspect this problematic part is,

if(isset( $_POST['p_status_update'] ) ){
  $renewal = $_POST['renewal'];
  $frent = $_POST['future-rent'];
  $available = $_POST['available'];
  $deposit = $_POST['deposit'];
  $lastShowing = $_POST['last-showing'];
  $status = $_POST['status'];
  $date = $_POST['date'];
  $initials = $_POST['initials'];
  $notes = $_POST['notes'];    

  update_option('renewal', $renewal);
  update_option('future-rent', $frent);
  update_option('available', $available);
  update_option('deposit', $deposit);
  update_option('last-showing', $lastShowing);
  update_option('status', $status);
  update_option('date', $date);
  update_option('initials', $initials);
  update_option('notes', $notes);
}

You’re just updating whatever there is on $_POST to the different options. There should probably be some kind of conditionals to check that you’re getting the data you’re expecting and not overwriting anything that isn’t supposed to be overwritten.

To start debugging the code I would recommend you to add the following to the beginning of your page function.

function properties_status_page_handler(){

  if ( isset($_POST['p_status_update']) ) {
    // dump what is sent to the server
    var_dump($_POST);
    // log for later review
    error_log(print_r($_POST, true));
    // stop the code from executing, results in white screen with the $_POST dump showing
    die;    
  }

  // rest of the code
}

With this whenever you click your form’s submit button you get to see what actually gets sent to the server. So you would do,

  1. (Uncomment debugging if statement)
  2. Click submit to send the form
  3. Inspect the dumped form data
  4. Adjust your code
  5. Comment out the debugging if statement
  6. Refresh page and send the form again
  7. See what happened, rinse and repeat

As a side note, if the data you’re saving is related to single posts, you could consider using custom taxonomies (e.g. for status, renewal, app-pending..) for the data instead of saving it as options. Or if it is unique to posts, e.g. dates or deposit sum, then save the data as post meta. This way you’d save post related data in more “correct” place. This would make querying for different post easier as taxonomies and post meta are supported in WP_Query.

Also to make the rendering more clear, you could consider breaking the long function into smaller ones. For example, script in js file, styles in css file, posts query into a separate function (which returns posts), saving in one function, html structure in separate view file, etc.. And for the select options you can use selected().

Related Posts:

  1. Time & Date on Post – Time Ago Custom Function
  2. How do I retrieve the slug of the current page?
  3. Most efficient way to get posts with postmeta
  4. Get posts by meta value
  5. Explanation of update_post_(meta/term)_cache
  6. How to extract data from a post meta serialized array?
  7. How to save an array with one metakey in postmeta?
  8. WordPress is stripping escape backslashes from JSON strings in post_meta
  9. How can I get the post ID from a WP_Query loop?
  10. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  11. How to update_post_meta value as array
  12. Adding meta tag without plugin
  13. What’s the point of get_post_meta’s $single param?
  14. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  15. How to edit a post meta data in a Gutenberg Block?
  16. Sanitizing integer input for update_post_meta
  17. post formats – how to switch meta boxes when changing format?
  18. Execute action after post is saved with all related post_meta records (data)
  19. Lack of composite indexes for meta tables
  20. Get a single post by a unique meta value
  21. if get_post_meta is empty do something
  22. How we get_post_meta without post id
  23. How get post id from meta value
  24. What is the code to get the download link for a product in WooCommerce?
  25. Safe to delete blank postmeta?
  26. advanced custom fields update_field for field type: Taxonomy
  27. update_post_meta not saving when value is zero
  28. Content hooks vs User hooks
  29. Meta compare with date (stored as string) not working
  30. Trying to get custom post meta through Jetpack JSON API [closed]
  31. How to update/insert custom field(post meta) data with wordpress REST API?
  32. What is the advantage of the wp_options design pattern?
  33. Restrict post edit/delete based on user ID and custom field
  34. get_post_meta returning empty string when data shows in the database
  35. publish_post action hook doesn’t give post_meta_data
  36. Remove WordPress.org Meta link
  37. Remove post meta keys
  38. How to access the post meta of a post that has just been published?
  39. Why time functions show invalid time zone when using ‘c’ time format?
  40. Why is get_post_meta returning an array when I specify it as single?
  41. How to update/delete array in post meta value?
  42. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  43. Adding an assisting editor box to Post page
  44. delete unused postmeta
  45. Should I sanitize custom post meta if it is going to be escaped later?
  46. Add post meta based on another post meta value before publish post
  47. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  48. Front-end update_post_meta snippet displays white screen?
  49. Query between two meta values?
  50. Save both current and new version of post meta
  51. Get Advanced Custom Fields values before saving [closed]
  52. Give extra post-meta to RSS feeds
  53. How to get meta value in wp_attachment_metadata
  54. WP REST API “rest_no_route” when trying to update meta
  55. Clean up output added via wp_head()
  56. List posts under meta_value heading
  57. Why am I getting an infinite loop with have_posts?
  58. get_post_meta – get a single value
  59. delete value 0 in post meta [closed]
  60. Can I safely delete a record, manually, in the wp postmeta table?
  61. How to store post meta in an array?
  62. What action hook updates post meta?
  63. Can’t translate the post meta data (Date) in another language
  64. get_post_meta / update_post_meta array
  65. adding a URL to a post meta
  66. get_post_meta fields don’t show up on posts page
  67. Exclude a category from the filed under list
  68. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  69. How do I access post meta data when publishing a new post in Gutenberg?
  70. update_post_meta() not working when used with WordPress action
  71. Using Advanced Custom Field (ACF) to insert meta description on each page
  72. Triple meta_key on custom SELECT query
  73. get_post_custom()
  74. Adding meta data to an attachment post
  75. update_post_meta not adding anything.(Nor add_post_meta)
  76. loop through all meta keys with get_post_meta
  77. Get posts by meta value with date
  78. How to add meta tag to wordpress posts filter?
  79. Are multiple values from get_post_meta guaranteed to be ordered?
  80. Identifying Importer Posts
  81. Get updated post meta on save_post action?
  82. Get post from meta_key and meta_value
  83. Add a post metadata if only the key and value does not exist
  84. get_post_meta returns bool(false)
  85. How metadata API works?
  86. Correct processing of `$_POST`, following WordPress Coding Standards
  87. Metabox Data not being saved [closed]
  88. How can I get values using key in Carbon Fields from Multiselect?
  89. Delete post meta conditionally after save post
  90. How to sanitize post meta field value?
  91. Problem With Order Item Meta In Woocommerce
  92. Job of meta_key meta_value fields in database tables
  93. WordPress Action Hooks and Post ID?
  94. Post IDs missing on delete_postmeta action hook
  95. How to store Gutenberg ColourPicker RGBA as metadata
  96. Options to get my custom post type metadata via the WordPress API
  97. Is it possible to update a post meta field through REST API if the format of it when registered is nested?
  98. How trigger to save post when updating post meta
  99. Create a Metabox that behaves Like a Taxonomy Box
  100. Views count with time limit per IP
Categories post-meta Tags options, post-meta
Output and filter data from a XML url
Exclude read more in the_excerpt [closed]

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress