【问题标题】:How can I remove post title and post content in a WordPress post?如何删除 WordPress 帖子中的帖子标题和帖子内容?
【发布时间】:2020-04-15 23:52:42
【问题描述】:

我想删除 WordPress 帖子中的帖子标题和帖子内容字段。这些字段的占位符是:

(占位符:添加标题)(占位符:开始写作或输入/选择一个块)

【问题讨论】:

标签: php wordpress


【解决方案1】:

将此添加到您的 function.php 中

add_action('admin_init', 'wpse_110427_hide_title');
function wpse_110427_hide_title() {
 if (current_user_can('subscriber'))
     remove_post_type_support('post', 'title');

}

这将隐藏订阅者的标题。用您的自定义帖子类型替换“帖子”

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-09-28
    • 2010-12-04
    • 1970-01-01
    相关资源
    最近更新 更多