ここに例があります。
最初に、配列キーに基づいてサブメニュー項目の順序を把握するにはvar_dump
、$ submenuグローバル変数で次のように出力します。
(私は例として投稿メニューとサブメニューを使用しています)
//shortened for brevity....
["edit.php"]=>
array(6) {
[5]=>
array(3) {
[0]=> string(9) "All Posts"
[1]=> string(10) "edit_posts"
[2]=> string(8) "edit.php"
}
[10]=>
array(3) {
[0]=> string(7) "Add New"
[1]=> string(10) "edit_posts"
[2]=> string(12) "post-new.php"
}
[15]=>
array(3) {
[0]=> string(10) "Categories"
[1]=> string(17) "manage_categories"
[2]=> string(31) "edit-tags.php?taxonomy=category"
}
[17]=>
array(3) {
[0]=> string(14) "Sub Menu Title"
[1]=> string(10) "edit_posts"
[2]=> string(17) "sub_menu_page.php"
}
}
私のサブメニュー項目がデフォルトの項目の後にキー17で配列に追加されていることがわかります。
たとえば、サブメニュー項目を追加する場合は、[ すべての投稿 ]サブメニュー項目の直後に、配列キーを6、7、8、または9(それぞれ5の前と10の前のいずれか)に設定する必要があります。
これがあなたのやり方です...
function change_submenu_order() {
global $menu;
global $submenu;
//set our new key
$new_key['edit.php'][6] = $submenu['edit.php'][17];
//unset the old key
unset($submenu['edit.php'][17]);
//get our new key back into the array
$submenu['edit.php'][6] = $new_key['edit.php'][6];
//sort the array - important! If you don't the key will be appended
//to the end of $submenu['edit.php'] array. We don't want that, we
//our keys to be in descending order
ksort($submenu['edit.php']);
}
結果、
["edit.php"]=>
array(6) {
[5]=>
array(3) {
[0]=> string(9) "All Posts"
[1]=> string(10) "edit_posts"
[2]=> string(8) "edit.php"
}
[6]=>
array(3) {
[0]=> string(14) "Sub Menu Title"
[1]=> string(10) "edit_posts"
[2]=> string(17) "sub_menu_page.php"
}
[10]=>
array(3) {
[0]=> string(7) "Add New"
[1]=> string(10) "edit_posts"
[2]=> string(12) "post-new.php"
}
[15]=>
array(3) {
[0]=> string(10) "Categories"
[1]=> string(17) "manage_categories"
[2]=> string(31) "edit-tags.php?taxonomy=category"
}
}
...試してみて、あなたの行き方を教えてください!
更新1:
これをfunctions.phpファイルに追加します。
function change_post_menu_label() {
global $menu;
global $submenu;
$my_menu = 'example_page'; //set submenu page via its ID
$location = 1; //set the position (1 = first item etc)
$target_menu = 'edit.php'; //the menu we are adding our item to
/* ----- do not edit below this line ----- */
//check if our desired location is already used by another submenu item
//if TRUE add 1 to our value so menu items don't clash and override each other
$existing_key = array_keys( $submenu[$target_menu] );
if ($existing_key = $location)
$location = $location + 1;
$key = false;
foreach ( $submenu[$target_menu] as $index => $values ){
$key = array_search( $my_menu, $values );
if ( false !== $key ){
$key = $index;
break;
}
}
$new['edit.php'][$location] = $submenu[$target_menu][$key];
unset($submenu[$target_menu][$key]);
$submenu[$target_menu][$location] = $new[$target_menu][$location];
ksort($submenu[$target_menu]);
}
私のアップデートには、メニュー位置の設定を処理する少し簡単な方法が含まれています。必要なのは、サブメニューページの名前とメニュー内での位置を指定することだけです。ただし$location
、既存のキーと同じサブメニューページを選択すると、そのキーはあなたのキーで上書きされるため、メニューアイテムはメニューアイテムの代わりに消えます。その場合は、メニューを正しく順序付けるために番号を増減してください。同様に、同じメニュー領域に影響を及ぼし$location
、サブメニュー項目と同じプラグインをインストールした場合も、同じ問題が発生します。それを回避するために、カイザーの例では、そのためのいくつかの基本的なチェックを提供しています。
アップデート2:
配列内のすべての既存のキーを目的のもの$location
と照合するコードのブロックを追加しました。一致が見つかった場合は、メニュー項目が互いに上書きされるのを避けるために$location
値を増やし1
ます。これはそれを担当するコードです、
//excerpted snippet only for example purposes (found in original code above)
$existing_key = array_keys( $submenu[$target_menu] );
if ($existing_key = $location)
$location = $location + 1;
更新3:(複数のサブメニュー項目をソートできるようにスクリプトを修正)
add_action('admin_init', 'move_theme_options_label', 999);
function move_theme_options_label() {
global $menu;
global $submenu;
$target_menu = array(
'themes.php' => array(
array('id' => 'optionsframework', 'pos' => 2),
array('id' => 'bp-tpack-options', 'pos' => 4),
array('id' => 'multiple_sidebars', 'pos' => 3),
)
);
$key = false;
foreach ( $target_menu as $menus => $atts ){
foreach ($atts as $att){
foreach ($submenu[$menus] as $index => $value){
$current = $index;
if(array_search( $att['id'], $value)){
$key = $current;
}
while (array_key_exists($att['pos'], $submenu[$menus]))
$att['pos'] = $att['pos'] + 1;
if ( false !== $key ){
if (array_key_exists($key, $submenu[$menus])){
$new[$menus][$key] = $submenu[$menus][$key];
unset($submenu[$menus][$key]);
$submenu[$menus][$att['pos']] = $new[$menus][$key];
}
}
}
}
}
ksort($submenu[$menus]);
return $submenu;
}
上記の例$target_menu
では、値の多次元配列を保持する変数内でパラメーターを適宜設定することにより、複数のサブメニューとサブメニューごとの複数のアイテムをターゲットにできます。
$target_menu = array(
//menu to target (e.g. appearance menu)
'themes.php' => array(
//id of menu item you want to target followed by the position you want in sub menu
array('id' => 'optionsframework', 'pos' => 2),
//id of menu item you want to target followed by the position you want in sub menu
array('id' => 'bp-tpack-options', 'pos' => 3),
//id of menu item you want to target followed by the position you want in sub menu
array('id' => 'multiple_sidebars', 'pos' => 4),
)
//etc....
);
このリビジョンは、サブメニュー項目が同じキー(位置)を持っている場合、サブメニュー項目が互いに上書きされるのを防ぎます。これは、存在しない使用可能なキー(位置)が見つかるまで循環するためです。