php register_new_post_type_with_taxonomy.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php register_new_post_type_with_taxonomy.php相关的知识,希望对你有一定的参考价值。
<?php
/*
* this file is mu-plugins/gallery-post-type.php
*
* Plugin Name: Register Gallery Post Type
* Plugin URI: http://knok.be/
* Description: Register a new custom post type for create galleries
* Version: 1.0
* Author: Knok Design
* Author URI: http://knok.be
*/
if ( !post_type_exists( 'gallery' ) ) {
function register_gallery_type() {
$label_singular = 'Galerie';
$label_plural = 'Galeries';
register_post_type('gallery', [
'label' => 'Galeries',
'labels' => [
'all_items' => 'Toutes les galeries photos en base de donnée',
'singular_name' => 'galerie',
'add_new_item' => 'Ajouter un nouvel album',
'add_new' => 'Ajouter un nouvel album',
],
'hierarchical' => true,
'description' => 'Permet d’ajouter des albums de photos dans la page Medias/Photos',
'public' => true,
'menu_icon' => 'dashicons-format-gallery',
'rewrite' => [
'slug' => pll__('galeries'),
'with_front' => false,
],
'supports' => ['title', 'thumbnail', 'custom-fields']
]);
}
function gallery_categories_init() {
register_taxonomy(
'gallery-taxonomies',
'gallery',
[
'label' => __( 'Catégories des photos' ),
'rewrite' => ['slug' => pll__('galeries') ],
'hierarchical' => true,
]
);
}
add_action('init', 'register_gallery_type');
add_action( 'init', 'gallery_categories_init' );
}
以上是关于php register_new_post_type_with_taxonomy.php的主要内容,如果未能解决你的问题,请参考以下文章
php send.php php邮件模板#php
IntelliJ IDEA 11编辑php是,支持php文件名为.php5和.php4,如何设置能让其也支持.php呢?
如何从php5升级到php7
请问php中如何调用php文件中的内容?
php [php:PHPMailer示例] php库“PHPMailer”示例。 #PHP
php基础