Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save feedmeastraycat/3065969 to your computer and use it in GitHub Desktop.
Save feedmeastraycat/3065969 to your computer and use it in GitHub Desktop.
WordPress: Get post id by meta key and value
<?php
if (!function_exists('get_post_id_by_meta_key_and_value')) {
/**
* Get post id from meta key and value
* @param string $key
* @param mixed $value
* @return int|bool
* @author David M&aring;rtensson <david.martensson@gmail.com>
*/
function get_post_id_by_meta_key_and_value($key, $value) {
global $wpdb;
$meta = $wpdb->get_results("SELECT * FROM `".$wpdb->postmeta."` WHERE meta_key='".$wpdb->escape($key)."' AND meta_value='".$wpdb->escape($value)."'");
if (is_array($meta) && !empty($meta) && isset($meta[0])) {
$meta = $meta[0];
}
if (is_object($meta)) {
return $meta->post_id;
}
else {
return false;
}
}
}
@JasonMuk
Copy link

is this code get the ID is the last post when have more result?

@manolof
Copy link

manolof commented Jul 29, 2014

Notice: wpdb::escape is deprecated since version 3.6! Use wpdb::prepare() or esc_sql() instead. in /Users/emmanouilgketsim/htdocs/svn/infosource.culturalcare.com/wp-includes/functions.php on line 3078

For WP version >= 3.6, use esc_sql() instead of $wpdb->escape and it should not throw any notice.

@solankin1576
Copy link

Thanks for it

@abdechakour
Copy link

For WP version >= 3.6 use in line 12
$meta = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM ".$wpdb->postmeta." WHERE meta_key=%s AND meta_value=%s", $key, $value ) );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment