在WP编辑器中查看双重分类输入

时间:2018-12-18 作者:Ludo

我为自定义帖子类型注册了3个分类法,但在编辑自定义帖子类型时,它们显示在2个位置。

我只想在编辑器右侧显示输入框。如何删除自定义字段下的下拉输入?

自定义字段下和右侧的3x输入:enter image description here

当我从函数中删除注册码时。php,并刷新结果如下:enter image description here

我的注册码来自函数。php:

function ledensubsector_init() {
    register_taxonomy(
        \'subsector\',
        \'leden\',
        array(
            \'label\' => __( \'Sub-sector\' )
        )
    );
}
add_action( \'init\', \'ledensubsector_init\' );

function ledensupplychain_init() {
    register_taxonomy(
        \'supplychain\',
        \'leden\',
        array(
            \'label\' => __( \'Supply chain\' )
        )
    );
}
add_action( \'init\', \'ledensupplychain_init\' );

function ledentechnology_init() {
    register_taxonomy(
        \'technology\',
        \'leden\',
        array(
            \'label\' => __( \'Technology\' )
        )
    );
}
add_action( \'init\', \'ledentechnology_init\' );

1 个回复
SO网友:Ludo

WP自动添加输入。我忘了我也用AFC为分类法添加了输入。所以我只需要从我的自定义字段中删除它们。

相关推荐

第一次提交时WP-EDITOR为空

我在一个简单的插件中使用wp编辑器,但我遇到了一个问题,第一次点击提交按钮时,数据库中的内容是空白的。<?php $editor_id = \'mycontent\'; wp_editor($content, $editor_id ); ?> 因此,我尝试使用以下内容提醒内容:if (j(\".wp-content-wrap\").hasClass(\"tmce-active\")){ alert(