我已经使用下面的代码来显示网页故事分类明智的,但链接不工作.它返回到一个404页面
`<form action=”<?php bloginfo(‘url’); ?>/” method=”get”><?php
$select = wp_dropdown_categories(‘show_option_none=Select Category&show_count=1&orderby=name&taxonomy=web_story_category&echo=0&selected=6′);
$select = preg_replace(“#<select([^>]*)>#”, “<select$1 onchange=’return this.form.submit()’>”, $select);
echo $select;
?></form>
1条答案
按热度按时间fjaof16o1#
Web Stories插件中的
web_story_category
分类当前未标记为public
,这意味着它不能用于链接到单个类别术语存档。您需要使用自定义分类,过滤分类参数以使其公开,或者等待执行此操作的插件更新。