Advertisement
Guest User

Untitled

a guest
May 24th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function get_primary_category_icon($post_id){
  2. global $wpdb;
  3. $query = "SELECT * FROM `".$wpdb->prefix."postmeta` WHERE `post_id` = ".$post_id." AND `meta_key` = '_yoast_wpseo_primary_category'";
  4. $res = $wpdb->get_results($query);
  5. $cat_id = $res[0]->meta_value;
  6.  
  7. return $cat_id;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement