取消设置WordPress附件字段

时间:2018-05-17 10:29:16

标签: php wordpress

我正在尝试删除一些附件字段,但我的代码不起作用。这是我在functions.php中的代码

function filter_function_name( $fields ) {
  unset($fields['post_excerpt']);
    unset($fields['title']);
    return $fields;
}
add_filter( 'attachment_fields_to_edit', 'filter_function_name', 10, 2 );

我正在使用WP 4.9.5我缺少什么?

提前致谢

1 个答案:

答案 0 :(得分:-1)

Yo可以使用attachment_fields_to_edit过滤器删除您不希望从数组中显示的字段。

    function remove_caption($fields) {
      unset($fields['post_excerpt']); // See wp-admin\includes\media.php line 1071
      unset($fields['title']);
      return $fields;
    }
    add_filter('attachment_fields_to_edit','remove_caption');

希望这适合你。