我希望获得特定键的post meta,其中metakey与任何特定id匹配。
例如: -
我想要在post meta中使用author_id = 1的所有评级值;
使用: - get_post_meta($ post_id,'rating',$ single);
答案 0 :(得分:0)
试试这个:
<?php
$author_id = $post->post_author;
if($author_id == 1){
get_post_meta( $post_id, 'rating', $single );
}
?>