我需要允许用户从下拉列表中选择投资组合项目,这些选定的投资组合项目将显示在主页上。
我使用wpalchemy类创建了可重复的部分,该部分包含所有公文包页面的下拉列表。
问题是,每当我点击更新按钮时,下拉列表的副本就会自动添加到重复列表中。
<?php while($mb->have_fields_and_multi(\'col1-project\')):
$mb->the_group_open();
$mb->the_field(\'portfolio-list1\');
$args = array (
\'name\' => $mb->get_the_name(),
\'id\' => $mb->get_the_name(),
\'selected\' => html_entity_decode($mb->get_the_value()),
\'post_type\' => \'portfolio\'
);
wp_dropdown_pages($args);
$mb->the_group_close();
endwhile; ?>
要点:https://gist.github.com/alokjain-lucky/6682775