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

How can I add/update post meta in a admin menu page?

You will need to use an Ajax function. Which requires javascript to send the form data to your php Ajax function which you can use to run update_post_meta();

Example:

Form Html:

<form>
<input id="meta" type ="text" name="2344" value="<?php echo esc_html( get_post_meta( 2344, '_your_key', true) ); ?>" />
</form>

Javascript:

jQuery(document).ready(function() {
    jQuery("form").submit(function() {
    var post_meta = jQuery("input name=[2344]").val();
    var ID = jQuery(this).attr("name");

    jQuery.ajax({
           type: "POST",
           url: ajaxurl,
           data: {
           action: "update_meta",
           post_id: ID,
           meta: post_meta,
          },
        success: function( data ) {
          //do something
     }
   });
 return false;

});

PHP function:

add_action( 'wp_ajax_update_meta', 'my_function' );
function my_function() {
   $post_id = $_POST['post_id'];
   $meta = $_POST['post_meta'];

  update_post_meta( $post_id, '_your_key', $meta );

  echo 'Meta Updated';
  die();
}

Related Posts:

  1. Can I exclude a post by meta key using pre_get_posts function?
  2. Custom post meta field effect on the performance on the post
  3. How to get custom post meta using REST API
  4. Difference between meta keys with _ and without _ [duplicate]
  5. Orderby meta_value only returns posts that have existing meta_key
  6. What is the index [0] for on post meta fields?
  7. What is “meta_input” parameter in wp_insert_post() used for?
  8. How to enable revisions for post meta data?
  9. The “_encloseme” Meta-Key Conundrum
  10. Best way to programmatically remove a category/term from a post
  11. Using get_post_meta with new_to_publish
  12. Custom field metabox not showing in back-end
  13. So much data in postmeta
  14. Can I count the number of users matching a value in a multiple value key?
  15. When using add_post_meta and update_post_meta, is there any way to give the individual arrays keys?
  16. How to hide meta box values from custom fields list?
  17. Auto sort the wp-admin post list by a meta key
  18. get_post_meta() unserialize issue – returns boolean(false)
  19. What is the advantage of the wp_options design pattern?
  20. Storing meta fields multiple times OR once with multi dimensional array?
  21. Allow user to create instances of custom field
  22. display specific custom fields
  23. Is there a hook / action that is triggered when adding or removing a post thumbnail?
  24. Meta keywords and descriptions plugin for manually editing meta for each page/post
  25. passing argument to get_template_part() or a better way to code
  26. Is it possible to store arrays in a custom field?
  27. Get updated meta data after save_post hook
  28. Multiple meta values for same meta_key adding on “Preview Changes” hit but not on saving or updating post
  29. Save HTML formatted data to post meta using add_post_meta()
  30. importing data from non-wordpress mysql db
  31. Create meta boxes that don’t show in custom fields
  32. Transients vs CRON +Custom Fields: Caching Data Per Post
  33. Unable to save datetime custom meta field using update_post_meta() function
  34. Up/Down voting system for WordPress
  35. post meta data clearing on autosave
  36. Create custom field on post draft or publish?
  37. Display info from custom fields in all images’ HTML
  38. Ordering posts by anniversary using only day and month
  39. get_post_meta fields don’t show up on posts page
  40. Update meta values with AJAX
  41. How to break meta values into different items and avoid duplicates?
  42. copy attachments to another post type and change attachment url
  43. Cannot edit post meta fields with rest API
  44. ajax delete value from custom field array
  45. Save attachment custom fields on front end
  46. How to use pagination with get_post_meta
  47. Copying Custom Meta Values from existing post to a duplicate post
  48. Add a post meta key and value only if it does not exist on the post
  49. Move value of one custom field to another
  50. Order posts according to user defined order for meta values?
  51. Displaying posts with only upcoming dates according their custom field date value
  52. Custom fields to save multiple values
  53. Custom fields: In what order are they saved into the DB?
  54. Function to change meta value in database for each post
  55. Get a post_id where meta_value equals something in a serialized meta_value field
  56. Get aggregate list of all custom fields for entire blog
  57. Transition from (classical) serialized custom meta field to (gutenberg) rest enabled meta
  58. Unable to show ACF’s Image Custom Field properly in Genesis Framework [closed]
  59. Custom field value based on other custom field values
  60. wp_handle_upload error “Specified file failed upload test” but still creates attachment?
  61. How to save a ToggleControl value in a meta field?
  62. Which is best in the following scenario : post_meta vs custom table vs parent/child posts
  63. Saving custom image meta fields
  64. Author Page Custom Query WHERE author OR [post meta value] OR [post meta value]
  65. How to display Meta Field Value?
  66. MySQL query to set wp_postmeta using term_taxonomy_id value
  67. How to Validate Post Meta type/extension (Video File Image File etc)
  68. Get all meta keys assigned to a post type
  69. using multiple meta_key and meta_value in query_posts
  70. Custom Meta Box not Saving in Posts with Gutenberg Editor
  71. Adding custom fields (post meta) before/during wp_insert_post()
  72. Combine multiple custom field values into single value
  73. How can I sort homepage by a meta value?
  74. Get specific custom field keys from a post and put into an array
  75. Display meta data from a custom field within plugin Category Grid View Gallery
  76. When editing a post with a custom meta box the values aren’t displaying correctly
  77. Hard Define Custom Field Value
  78. Custom fields / meta box output
  79. If post custom meta data is not set, show normal state
  80. add_post_meta insert null value into Database
  81. Make Custom Fields Public in JSON – API
  82. How do i output images from URL’s added to the same custom field key
  83. Retrieving custom field as shortcode
  84. Colecting values from custom field checkboxes and displaying them in the post
  85. Build Array from Input Fields question
  86. custom field with links
  87. add multiple values (array) to post meta_input
  88. Order by a meta field in query loop
  89. How can i put a custom field inside this php
  90. Add custom fields to specific menus
  91. Site uses wpdb to fetch meta_keys but just displays first meta_key from a page (the post uses the same meta_key “filmmaker” more than once)
  92. save all acf options in one meta_value [closed]
  93. How to add new Metadata options (Date, Author, etc.) for Posts?
  94. WP Query Args – search by meta_key or title
  95. Saving multiple custom meta box fields
  96. Search for meta_query does not return any result if combined with title
  97. get Custom field label (select/dropdown) on front end
  98. SQL query based on two different custom field values
  99. Block Editor – Meta values not saved, meta changes to empty array on update
  100. What is the best way to get a different post’s custom field/postmeta with js?
Categories custom-field Tags add-menu-page, admin-menu, custom-field, post-meta
Custom Text in Media Uploader in a Theme Options Page
Category List with custom urls

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
  • Post Navigation Elementor
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • WPFacet multiple loop displaying duplicate content
  • Get the name of the template/*html file used
  • Fix: WordPress.DB.PreparedSQL.NotPrepared Plugin Check (PCP)
  • Removing unnecessary CSS and JS code from wp_head()
  • hexagonal image gallery. Am I on the right track? [closed]
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
© 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