我使用 WPAlchemy 在管理区域创建了一个类别列表,代码如下:
<?php
$mb->the_field('s_cat');
$args = array(
'name' => $mb->get_the_name(),
'id' => $mb->get_the_name(),
'selected' => html_entity_decode($mb->get_the_value()),
'class' => 'catlist',
'orderby' => 'ID',
'order' => 'ASC',
'hide_empty' => 0,
'child_of' => 0,
'hierarchical' => 1,
'depth' => 2,
'hide_if_empty' => false );
wp_dropdown_categories( $args );
?>
现在我创建了一个函数来创建帖子列表,以下是代码:
function fn_dropdown_post($cat_id) {
$args=array(
'cat' => $cat_id,
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
?>
<select name="menu">
<?php
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<option value="<?php the_ID() ?>"><?php the_title(); ?></option>
<?php
endwhile;
?>
</select>
<?php
}
wp_reset_query();
}
到目前为止工作正常。
我想在选择类别时显示帖子列表,我尝试了以下不起作用的代码:
<script>
jQuery(document).ready(function(e) {
jQuery('.catlist').change(function() {
<?php fn_dropdown_post(" ?> jQuery(this).val() <?php "); ?>;
});
});
</script>
在上面的代码jQuery(this).val()
中显示了所选类别的值。
请问有什么建议吗?