根据Wordpress中的帖子类别为帖子创建管理菜单

时间:2019-02-05 08:05:12

标签: php wordpress

我正在尝试创建一个具有所有可用帖子功能的新管理菜单,所以我正在尝试创建一个具有帖子类别“新闻”和帖子类型-帖子的新菜单 因此,我添加了以下功能,但仍会更改原始帖子菜单的命名和功能。

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',
            )
        );
    }
} 

2 个答案:

答案 0 :(得分:4)

“帖子”已被使用。因此,您无法使用该名称注册其他帖子类型。因此,通过这种方式,您还有其他三个选择。

选项1:

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

更多信息:

选项2

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

更多信息:

选项3

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

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

更多信息:

希望这会很有用。编码愉快。

答案 1 :(得分: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'); 
}