我正在使用存储库中的免费Real Estate Wordpress插件,但已支付支持费用。
无论如何,插件的“城市”分类法不是分层的。我需要使其成为HIERARCHICAL,以便可以在其下创建带有分层城市的县。如您所知,出于已知原因,无法修改插件的文件(更新覆盖)。
我正在寻找这样的东西部署在functions.php中:
function change_post_object_label( $taxonomy_args ) {
$taxonomy_args->hierarchical = true;
}
add_action( 'taxonomy_hook', 'change_taxonomy_args' );
它存在吗?如何在不更改php文件的情况下将给定分类法的层次结构设置为“ true”?
答案 0 :(得分:1)
如果您使用的是WordPress 4.4或更高版本,则可以使用 register_taxonomy_args 过滤器。
将此添加到您的functions.php中,不要忘记使用实际的分类标准。
function filter_register_taxonomy_args( $args, $taxonomy ) {
if ( $taxonomy === 'taxonomy_slug_here' ) {
$args['hierarchical'] = true;
}
return $args;
}
add_filter( 'register_taxonomy_args', 'filter_register_taxonomy_args', 10, 2 );