gpt4 book ai didi

php - WordPress 在自定义管理菜单下显示分类法

转载 作者:可可西里 更新时间:2023-11-01 00:42:03 25 4
gpt4 key购买 nike

我正在尝试在管理菜单项下显示自定义分类法,该菜单项只是一个页面,即 http://example.com/wp-admin/admin.php?page=bla .

根据 WordPress 开发者。 register_taxonomy 下的 show_in_menu 页面它说了以下内容:

'some string' - If an existing top level page such as 'tools.php' or 'edit.php?post_type=page', the post type will be placed as a sub menu of that.

这是否意味着分类只能显示在那些之下?

PHP

<?php
// hook into the init action and call create_book_taxonomies when it fires
add_action( 'init', 'create_book_taxonomies', 0 );

// create two taxonomies, genres and writers for the post type "book"
function create_book_taxonomies() {
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Genres', 'taxonomy general name' ),
'singular_name' => _x( 'Genre', 'taxonomy singular name' ),
'search_items' => __( 'Search Genres' ),
'all_items' => __( 'All Genres' ),
'parent_item' => __( 'Parent Genre' ),
'parent_item_colon' => __( 'Parent Genre:' ),
'edit_item' => __( 'Edit Genre' ),
'update_item' => __( 'Update Genre' ),
'add_new_item' => __( 'Add New Genre' ),
'new_item_name' => __( 'New Genre Name' ),
'menu_name' => __( 'Genre' ),
);

$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_in_menu' => 'bla', // not working | tried admin.php?page=bla as well, also not working
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'genre' ),
);

register_taxonomy( 'genre', array( 'book' ), $args );
}

最佳答案

我已经找到解决这个问题的方法,代码如下:

    add_action( 'admin_menu', 'shmeh_menu' );
add_action( 'parent_file', 'menu_highlight' );

function shmeh_menu() {
add_submenu_page( 'bla', 'Shmeh', 'Shmeh', 'manage_options', 'edit-tags.php?taxonomy=shmeh');
}

function menu_highlight( $parent_file ) {
global $current_screen;

$taxonomy = $current_screen->taxonomy;
if ( $taxonomy == 'shmeh' ) {
$parent_file = 'bla';
}

return $parent_file;
}

关于php - WordPress 在自定义管理菜单下显示分类法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32984834/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com