WordPress 创建自定义文章类型 禁用Add New 新增/添加功能

前篇我们写了 WordPress插件开发 移除 Edit | Quick Edit | Trash | View 功能 图文教程 ,即使是这样,但是创建自定义文章时依然会有Add New按钮出现,下面我们给出自定义文章类型,如何禁止Add New按钮

$args = array(     'label'               => __( 'Custom Post Type', 'text_domain' ),     'description'         => __( 'Custom Post Type', 'text_domain' ),     'capability_type' => 'custom_post_type',     'capabilities' => array(         'create_posts' => false,//这里禁用创建功能     ), ); register_post_type( 'custom_post_type', $args );

腾讯云限时秒杀【点击购买】

搬瓦工,CN2高速线路,1GB带宽,电信联通优化KVM,延迟低,速度快,建站稳定,搬瓦工BandwagonHost VPS优惠码BWH26FXH3HIQ,支持<支付宝> 【点击购买】!

Vultr$3.5日本节点,512M内存/500G流量/1G带宽,电信联通优化,延迟低,速度快【点击购买】!

阿里云香港、新加坡VPS/1核/1G/25G SSD/1T流量/30M带宽/年付¥288【点击购买】

WordPress 创建自定义文章类型 禁用Add New 新增/添加功能

`微信`扫码 加好友

链接到文章: https://www.gkxyz.com/wordpress-chuangjianzidingyiwenzhangleixing-jinyongadd-new-xinzeng-tianjiagongneng.html

推荐站点

  • 阿里云-为了无法计算的价值

    阿里云——阿里巴巴集团旗下公司,是全球领先的云计算及人工智能科技公司之一。提供免费试用、云服务器、云数据库、云 […]

  • Akamai(Linode)

    Deploy more with Linux virtual machines, global infrast […]

  • RAKsmart

    主机商介绍:RAKsmart是知名的美国服务器租用商,包括美国站群服务器、美国cn2服务器、香港服务器等热门产 […]

  • Vultr

    Vultr Global Cloud Hosting – Brilliantly Fast SSD […]

评论已关闭