首页 > 解决方案 > 从 WP_Meta_query 返回帖子 ID

问题描述

运行此代码后,我希望获取 post_id 列:

$query_args = array (
        array(
            'key' => 'registration',
            'value' => $reg,
            'compare' => '='
        )
    );

    $query = new WP_Meta_Query($query_args);

请问如何检索帖子的post_id?

标签: phpwordpress

解决方案


您可以像这样使用get_the_ID()

$post_id = get_the_ID();


推荐阅读