我想更改一个 wordpress 脚本。我想使用get_post_meta
. 但是如何从$user_ID
. 我的意思是我只有用户 ID,仅此而已,我想获取他的元帖子,类似于get_post_meta()
.
例如这个例子接近我需要的,但它没有找到任何帖子,找到了 0 个帖子。
<?php query_posts('author=32'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endwhile; endif; ?>