php 网址重写自定义帖子类型的项目divi

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 网址重写自定义帖子类型的项目divi相关的知识,希望对你有一定的参考价值。

function rename_project_cpt() {
    register_post_type( 'project',
    	array(
    	'labels' => array(
    	'name'          => __( 'Brokers', 'divi' ), // change the text portfolio to anything you like
    	'singular_name' => __( 'Brokers', 'divi' ), // change the text portfolio to anything you like
    	),
    	'has_archive'  => true,
    	'hierarchical' => true,
        'menu_icon'    => 'dashicons-images-alt2',  // you choose your own dashicon
    	'public'       => true,

    	'rewrite'      => array( 'slug' => 'brokers', 'with_front' => false ), // change the text portfolio to anything you like
      'supports'     => array(),
    ));
}
add_action( 'init', 'rename_project_cpt' );

以上是关于php 网址重写自定义帖子类型的项目divi的主要内容,如果未能解决你的问题,请参考以下文章

php 重写wordpress自定义帖子类型

PHP Wordpress自定义帖子类型:帖子网址中的POST ID

自定义帖子类型 Slug 重写问题

根据 Wordpress 中的自定义字段值批量重写帖子 slug

php Esconder帖子类型proyectos de divi

自定义帖子类型和分类法使用相同的 slug 和重写