所以,我是自定义帖子类型'pelajaran'。然后我选择了选项(位置和主题)来搜索自定义帖子类型。
我从用户那里获取了数据(位置+主题)和值。这是我选择选项的代码
$query = get_users('role=GURU&order=ASC&orderby=meta_value&meta_key=address');
<select name="location">
<option>Location</option>
<?php foreach ($query as $q) {
$address = get_the_author_meta('address', $q->ID); ?>
<option value="<?php echo $q->ID; ?>"><?php echo $address; ?></option>
<?php } ?>
</select>
当结果出来时,因为用户的id值。是否可以从用户ID / author中检索自定义帖子类型的数据?
这是我的结果代码,在另一页上:
<?php
global $current_user;
get_currentuserinfo();
$location = "";
if (isset($_POST['location'])) {
$location = $_POST['location'];
}
$args = array (
'post_type' => 'pelajaran',
'author' => $current_user->ID,
'posts_per_page' => -1,
);
$pelajaran = get_posts($args);
for($i=0;$i<sizeof($pelajaran);$i++) { ?>
<?php if($location == $pelajaran[$i]->ID )
echo ' '; //some my code html here
?>
<?php } ?>
但是,我仍然无法显示用户id / author的发布数据类型。 有人可以帮帮我吗? 提前谢谢:)