我需要在 Wordpress 中显示各种类别。用户可以选择游戏类型(竞技场、指南、蒙太奇)的类别(火术师、萨满祭司、守望者)。 www.Forge-Movies.com就是我所说的。使用以下代码,类别不显示。但是“类别”位于下拉列表的标题中(show_option_none=Categories)。显然查询时出了什么问题。
<form action="<?php bloginfo('url'); ?>/" method="get"><div>
<?php
if (in_category('montages'))
{
$cat_id = get_cat_id('montages');
$select = wp_dropdown_categories('show_option_none=Categories&echo=0&hierarchical=1&parent='. $cat_id);
$select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select);
echo $select;
}
elseif (in_category('guides'))
{
$cat_id = get_cat_id('guides');
$select = wp_dropdown_categories('show_option_none=Categories&echo=0&hierarchical=1&parent='. $cat_id);
$select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select);
echo $select;
}
?>
<noscript><div><input type="submit" value="View" /></div></noscript></div></form>
很有趣,但是执行了以下代码。
<form action="<?php bloginfo('url'); ?>/" method="get"><div>
<?php
$cat_id1 = get_cat_id('guides');
$select = wp_dropdown_categories('show_option_none=Categories&echo=0&hierarchical=1&parent='. $cat_id1);
$select = preg_replace("#<select([^>]*)>#", "<select$1 onchange='return this.form.submit()'>", $select);
echo $select;
?>
<noscript><div><input type="submit" value="View" /></div></noscript></div></form>
对不起,我的英语不好。我把一些词从德语翻译成英语。