我想使用以下元函数显示用户的帖子:
<?php
$user_id = get_current_user_id();
$key = '';
$single = true;
$user_List = get_user_meta( $user_id, $key, $single );
echo '<p>The '. $key . ' value for user id ' . $user_id . ' is: ' . $user_List . '</p>';
?>
当$ key只有一个项目时,它工作正常。我想使用此代码为多个键运行相同的查询(因为我的Key是帖子ID),以便我可以使用它来显示该用户的帖子,如下所示:
<?php
$args = array(
'post_type' => 'todo_listing',
'posts_per_page' => 4,
'order' => 'asc',
'meta_key' => '1014',
'meta_query' => array(
array(
'key' => '$id',
'meta_value_num' => '1',
)
)
);
$loop = new WP_Query( $args );
?>
<?php
while ( $loop->have_posts() ) : $loop->the_post();
?>
<?php echo get_the_ID();?> <?php the_title(); ?>
<?php
endwhile;
?>
我如何修改它实现这一目标?