情况:有一个选择下拉输入,用于输入自定义帖子类型的当前用户帖子。该页面的功能是,当前用户将从该下拉列表中选择一个帖子,并使用AJAX将该帖子的自定义字段数据添加到该页面下方的div中。
在AJAXing方面不是一个强大的开发人员,但了解基础知识,只是在我的特殊情况下寻找关于从哪里开始的指南。
以下是该选择的下拉代码:
<select>
<option value="">- Select a Realtor -</option>
<?php
if ( is_user_logged_in() ):
global $current_user;
wp_get_current_user();
$author_query = array('posts_per_page' => '-1','author' => $current_user->ID, 'post_type'=>'realtors');
$author_posts = new WP_Query($author_query);
while($author_posts->have_posts()) : $author_posts->the_post();
$postid = get_the_ID();
?>
<option value="<?php echo get_the_ID(); ?>"><?php the_title(); ?></option>
<?php
endwhile;
else :
echo "not logged in";
endif;
?>
</select>
谢谢!