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

Unique Post Meta Values

This should not be complicated so I can’t help but think that I am missing something. What it sounds like you need is get_post_meta.

$yid = get_post_meta($post->ID,'youtube_id',true);
if (empty($yid)) {
  // not set
} else {
  // set
}

Edit:

You need a meta_query for the most WordPress-y solution:

$args = array(
  'post_type' => 'post',
  'meta_query' => array(
    array(
      'key' => 'youtube_id',
      'value' => 'some_value',
    )
  ),
  'ignore_sticky_posts' => true,
  'no_found_rows' => true,
  'posts_per_page' => 1,
  'fields' => 'ids',
);
$q = new WP_Query($args);
var_dump($q);

However, your code is easily adaptable:

$different = $wpdb->get_var("SELECT meta_id FROM {$wpdb->postmeta} WHERE meta_key = 'youtube_id' AND meta_value="some_value"");
if(!empty($different)) {
    echo 'Dude, we already have this post.';
}

Note: use $wpdb. It will save you some effort.

Related Posts:

  1. importing data from non-wordpress mysql db
  2. Move value of one custom field to another
  3. MySQL query to set wp_postmeta using term_taxonomy_id value
  4. MySQL Query that looks for post with Custom Field, then changes Category
  5. Add custom field to all posts in specific post_type
  6. How to improve my non-unique metadata MySQL entries?
  7. Can I exclude a post by meta key using pre_get_posts function?
  8. Custom post meta field effect on the performance on the post
  9. How to get custom post meta using REST API
  10. Difference between meta keys with _ and without _ [duplicate]
  11. Orderby meta_value only returns posts that have existing meta_key
  12. What is the index [0] for on post meta fields?
  13. What is “meta_input” parameter in wp_insert_post() used for?
  14. How to enable revisions for post meta data?
  15. The “_encloseme” Meta-Key Conundrum
  16. Best way to programmatically remove a category/term from a post
  17. Using get_post_meta with new_to_publish
  18. Custom field metabox not showing in back-end
  19. So much data in postmeta
  20. Can I count the number of users matching a value in a multiple value key?
  21. When using add_post_meta and update_post_meta, is there any way to give the individual arrays keys?
  22. How to hide meta box values from custom fields list?
  23. Auto sort the wp-admin post list by a meta key
  24. get_post_meta() unserialize issue – returns boolean(false)
  25. What is the advantage of the wp_options design pattern?
  26. Storing meta fields multiple times OR once with multi dimensional array?
  27. Allow user to create instances of custom field
  28. display specific custom fields
  29. Is there a hook / action that is triggered when adding or removing a post thumbnail?
  30. Meta keywords and descriptions plugin for manually editing meta for each page/post
  31. passing argument to get_template_part() or a better way to code
  32. Is it possible to store arrays in a custom field?
  33. Get updated meta data after save_post hook
  34. Multiple meta values for same meta_key adding on “Preview Changes” hit but not on saving or updating post
  35. Save HTML formatted data to post meta using add_post_meta()
  36. Query meta field using between
  37. Create meta boxes that don’t show in custom fields
  38. Transients vs CRON +Custom Fields: Caching Data Per Post
  39. Unable to save datetime custom meta field using update_post_meta() function
  40. Up/Down voting system for WordPress
  41. post meta data clearing on autosave
  42. Create custom field on post draft or publish?
  43. Display info from custom fields in all images’ HTML
  44. Ordering posts by anniversary using only day and month
  45. get_post_meta fields don’t show up on posts page
  46. Update meta values with AJAX
  47. How to break meta values into different items and avoid duplicates?
  48. copy attachments to another post type and change attachment url
  49. Cannot edit post meta fields with rest API
  50. ajax delete value from custom field array
  51. Save attachment custom fields on front end
  52. How to use pagination with get_post_meta
  53. Copying Custom Meta Values from existing post to a duplicate post
  54. Add a post meta key and value only if it does not exist on the post
  55. Order posts according to user defined order for meta values?
  56. Displaying posts with only upcoming dates according their custom field date value
  57. Custom fields to save multiple values
  58. Custom fields: In what order are they saved into the DB?
  59. Function to change meta value in database for each post
  60. Get a post_id where meta_value equals something in a serialized meta_value field
  61. Get multiple custom field values in a $wpdb query [duplicate]
  62. Use ajax to update_post_meta
  63. Get aggregate list of all custom fields for entire blog
  64. Difference between ‘LIKE’ and ‘IN’ in meta queries
  65. Transition from (classical) serialized custom meta field to (gutenberg) rest enabled meta
  66. Unable to show ACF’s Image Custom Field properly in Genesis Framework [closed]
  67. Custom field value based on other custom field values
  68. little help with a mySQL query to wp database
  69. wp_handle_upload error “Specified file failed upload test” but still creates attachment?
  70. Importing users to Buddypress with custom fields
  71. How to save a ToggleControl value in a meta field?
  72. Which is best in the following scenario : post_meta vs custom table vs parent/child posts
  73. Saving custom image meta fields
  74. Author Page Custom Query WHERE author OR [post meta value] OR [post meta value]
  75. How to display Meta Field Value?
  76. How to Validate Post Meta type/extension (Video File Image File etc)
  77. Get all meta keys assigned to a post type
  78. using multiple meta_key and meta_value in query_posts
  79. Custom Meta Box not Saving in Posts with Gutenberg Editor
  80. Adding custom fields (post meta) before/during wp_insert_post()
  81. Combine multiple custom field values into single value
  82. How can I sort homepage by a meta value?
  83. Get specific custom field keys from a post and put into an array
  84. How do I use wp_query for WordPress search?
  85. Nav Menu – Add class based on meta keys
  86. How to query posts with certain custom meta data, and output Post data
  87. ACF: How to get the full field name (meta_key) by a field key?
  88. How to wrap meta values seperated by comma in ? [closed]
  89. Bulk remove post meta
  90. post meta getting deleted on save
  91. How to create html block to display extra information on woocommerce single product page
  92. Can’t get post ID using wp_insert_post_data
  93. Create Multiple File Upload Metabox in WordPress
  94. filtering custom post types via meta data drop down
  95. How to add a new meta key and assign timestamp to posts
  96. Run a check for multiple meta key values
  97. If meta key exists in get posts function otherwise create it
  98. Custom field not updating when value is empty
  99. meta_compare seems to be treating values as strings instead of integers as expected
  100. WordPress Rest API to call page data associate with custom meta
Categories custom-field Tags custom-field, mysql, post-meta
Custom WordPress user permalink
If Media Type .GIF

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