根据Wordpress中的帖子类别创建Post的Admin菜单

问题描述 投票:3回答:2

我正在尝试创建一个新的管理菜单,其中包含所有后期功能所以我正在尝试创建一个新的菜单,其中包含一个帖子类别'新闻'和后期类型 - 帖子所以我添加了以下功能但它仍然改变了命名和功能原始邮政菜单。

function custom_post_type() 
{
    $labels = array(
        'name'                => _x( 'News', 'Post Type General Name', 'texdomain' ),
        'singular_name'       => _x( 'News', 'Post Type Singular Name', 'texdomain' ),
        'menu_name'           => __( 'News', 'texdomain' ),
        'parent_item_colon'   => __( 'Parent News', 'texdomain' ),
        'all_items'           => __( 'All News', 'texdomain' ),
        'view_item'           => __( 'View News', 'texdomain' ),
        'add_new_item'        => __( 'Add New News', 'texdomain' ),
        'add_new'             => __( 'Add New', 'texdomain' ),
        'edit_item'           => __( 'Edit News', 'texdomain' ),
        'update_item'         => __( 'Update News', 'texdomain' ),
        'search_items'        => __( 'Search News', 'texdomain' ),
        'not_found'           => __( 'Not Found', 'texdomain' ),
        'not_found_in_trash'  => __( 'Not found in Trash', 'texdomain' ),
    );

    // Set other options for Custom Post Type

    $args = array
    (
        'label'               => __( 'News', 'texdomain' ),
        'description'         => __( 'News news and reviews', 'texdomain' ),
        'labels'              => $labels,

        // Features this CPT supports in Post Editor

        'supports'            => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', 'category'),

        // You can associate this CPT with a taxonomy or custom taxonomy. 

        'taxonomies'          => array( 'genres' ),
        /* A hierarchical CPT is like Pages and can have
        * Parent and child items. A non-hierarchical CPT
        * is like Posts.
        */  
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => false,
        'menu_position'       => 5,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'page',
    );

    // Registering your Custom Post Type
    register_post_type( 'Post', $args );

}

/* Hook into the 'init' action so that the function
* Containing our post type registration is not 
* unnecessarily executed. 
*/

add_action( 'init', 'custom_post_type', 0 );
function custom_post_news_search( $query ) {
    global $wp_query;

    if( is_admin() && $query->is_main_query() && isset( $_GET['post_type'] ) ) {

        //   $strSearchUrl = esc_attr($_GET['post_type']);
        $wp_query = new WP_Query(
        array(
            'post_type' => 'post',
            'category_name'    => 'News',
            )
        );
    }
} 
php wordpress
2个回答
4
投票

“邮政”已经被采取。因此,您无法使用此名称注册其他帖子类型。因此,除此之外,您还有其他三种选择。

选项1:

创建一个自定义帖子类型,将“New Posts”或new_posts命名为slug,将“News”命名为其分类。

更多信息:

选项2

如果您坚持将帖子类型作为帖子。您可以创建一个名为“新闻”的新分类,并将其附加到默认帖子。

更多信息:

选项3

这个比其他人稍微复杂一点。

  • 为帖子创建名为“新闻”的新类别。
  • 创建管理页面。
  • 使用WP_List_Table可以获得与默认帖子和自定义帖子类型相同的视图。
  • 查询具有“新闻”类别的帖子并在此处列出。
  • (可选)如果您不想使用默认帖子,请为目标帖子创建编辑页面。

更多信息:

希望这会有用。快乐的编码。


3
投票

Posts下创建一个新的子菜单以列出(或过滤)其下的类别非常容易。只需将以下代码放在主题的'functions.php'中即可。

add_action('admin_menu', 'my_admin_menu'); 
function my_admin_menu() { 
    add_submenu_page('edit.php', 'News', 'News', 'manage_options', 'edit.php?category_name=news'); 
}
© www.soinside.com 2019 - 2024. All rights reserved.