我有一个常规选择的下拉列表。我需要使用Multiselect下拉列表。
我在header.php中添加了js脚本,现在我需要添加字符串multiple="multiple"
。
在萤火虫中,我在一个字符串中有多个=“倍数” http://gyazo.com/e324c9bdcdd1d89cd3c78ba947145e68
现在我需要在此块中添加字符串multiple="multiple"
,但我不知道如何:
<?php wp_editor( get_the_content() , 'post_content' ); ?>
<?php
$terms = wp_get_post_terms( $post->ID,"listing_category" );
$terms = isset($terms[0]) ? $terms[0]->term_id : "";
if(get_field("custom_attributes_input_types","options") == "Dropdowns"):
wp_dropdown_categories(
array(
'taxonomy' => 'listing_category',
'hierarchical'=>1,
'show_option_none'=>__('Choose Category:','um_lang'),
'name' => 'listing_category',
'hide_empty' => false,
'selected' => $terms
)
);
else:
?>