我正在尝试为我的数据库中的所有帖子获取以下 3 列
- 用户名
- 帖子标题
- pods_field_blog_category
user_name和post_title存储在wp_posts
表中pods_field_blog_category存储在wp_postmeta
表中。
下面的代码显示user_id和post_title,但我不确定如何获取 meta_value 并显示它:
<?php
$posts = get_posts(array(
'posts_per_page' => -1,
'post_type' => 'custom_post'
)
);
if ($posts):
?>
<ul>
<?php
foreach ($posts as $post):
setup_postdata($post);
?>
<li>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
//what should be the code to display the meta value pods_field_blog_category
</li>
<?php endforeach; ?>
</ul>
<?php wp_reset_postdata(); ?>
<?php endif; ?>