如何删除WooCommerce产品编辑器页面中的主描述文本框?我只使用“Product Short Description”文本框

时间:2022-01-21 作者:edgar_is

显示在Woocommerce产品标题右下方的主描述文本框似乎无法在屏幕选项下拉菜单中禁用。它也不能移动、最小化,而且我似乎找不到Woocommerce挂钩来禁用它。

我只对显示产品简短描述文本框感兴趣,因为我的客户不使用主描述框。

1 个回复
SO网友:Sébastien Serre

我还没有测试过,但像这样的测试应该可以:

function wpse70000_add_author_metabox_to_cpt_book( $args, $post_type ) {
    if (\'product\' === $post_type ){
        unset($args[\'editor\'] ); // set the \'supports\' array
    }    
return $args;
}

add_filter( \'register_post_type_args\', \'wpse70000_add_author_metabox_to_cpt_book\', 10, 2 );

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();