簡體   English   中英

如何在管理菜單中添加自定義帖子類型?

[英]How do I add a custom post type to the admin menu?

我的文件是否放在錯誤的文件夾中?

添加所有這些代碼后,它們最終以文本形式出現在我的管理菜單上。 我嘗試將其直接放入我的functions.php ,也將其放入一個名為function.php的文件中,這就是本教程所說的內容,我認為這是一個錯字。

themes/theme-name/wp-includes/post.php
function ttlm_register_team_custom_type() {
    $labels = array(
        'name'               => _x( 'Teams', 'post type general name', 'your-plugin-textdomain' ),
        'singular_name'      => _x( 'Team', 'post type singular name', 'your-plugin-textdomain' ),
        'menu_name'          => _x( 'Teams', 'admin menu', 'your-plugin-textdomain' ),
        'name_admin_bar'     => _x( 'Team', 'add new on admin bar', 'your-plugin-textdomain' ),
        'add_new'            => _x( 'Add New', 'team', 'your-plugin-textdomain' ),
        'add_new_item'       => __( 'Add New Team', 'your-plugin-textdomain' ),
        'new_item'           => __( 'New Team', 'your-plugin-textdomain' ),
        'edit_item'          => __( 'Edit Team', 'your-plugin-textdomain' ),
        'view_item'          => __( 'View Team', 'your-plugin-textdomain' ),
        'all_items'          => __( 'All Teams', 'your-plugin-textdomain' ),
        'search_items'       => __( 'Search Teams', 'your-plugin-textdomain' ),
        'parent_item_colon'  => __( 'Parent Teams:', 'your-plugin-textdomain' ),
        'not_found'          => __( 'No teams found.', 'your-plugin-textdomain' ),
        'not_found_in_trash' => __( 'No teams found in Trash.', 'your-plugin-textdomain' )
    );

    $args = array(
        'labels'             => $labels,
        'public'             => true,
        'publicly_queryable' => true,
        'show_ui'            => true,
        'show_in_menu'       => true, 
        'query_var'          => true,
        'rewrite'            => array( 'slug' => 'ttlm_team' ),
        'capability_type'    => 'post',
        'has_archive'        => true,
        'hierarchical'       => false,
        'menu_position'      => null,
        'supports'           => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' )
    );

    register_post_type( 'ttlm_team', $args );
}

add_action( 'init', 'ttlm_register_team_custom_type' );
themes/theme-name/functions.php
/*-----------------------------------------------*/
/* Custom Post Types
/*-----------------------------------------------*/
require_once('wp-includes/post.php');

WP管理員顯示代碼

將代碼包括在:

<?php

//your functions

?>

希望能幫助到你

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM