我现在正在wordpress网站上工作,但我对分类法下拉列表有问题。此代码以公共形式显示,以便访问者发送食谱,分类法是已经在网站上注册的成分。
在当前的下拉列表中,一切正常,显示分类法,并在管理中查看一次。
对于这段代码,我有一个基本的下拉列表,但我想要一个带有清单的下拉列表。
<?php wp_dropdown_categories( \'tab_index=25&taxonomy=ingredient-listing&name=ingredient-listing&show_option_none=\'.__(\'Choisir\',\'FoodRecipe\').\'&hide_empty=0\' ); ?>
我尝试使用以下代码:
<?php wp_category_checklist( \'tab_index=25&taxonomy=ingredient-listing&name=ingredient-listing&show_option_none=\'.__(\'Choisir\',\'FoodRecipe\').\'&hide_empty=0\' ); ?>
函数中的代码。php
function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {
wp_terms_checklist( $post_id, array(
\'taxonomy\' => \'category\',
\'descendants_and_self\' => $descendants_and_self,
\'selected_cats\' => $selected_cats,
\'popular_cats\' => $popular_cats,
\'walker\' => $walker,
\'checked_ontop\' => $checked_ontop
) );
}
但不起作用,我犯了一个致命的错误。
功能类别清单已经存在,但wp管理端,所以我认为不可访问端wp内容。。。
你有什么想法吗?
非常感谢你
内西