Promoting Overview & "all_items" menu options to appear first in navigation feature. (https://github.com/woocommerce/woocommerce-admin/pull/5534)

This commit is contained in:
Joel Thiessen 2020-11-06 11:36:55 -08:00 committed by GitHub
parent 057725895b
commit 17b7fc0f1f
2 changed files with 3 additions and 0 deletions

View File

@ -138,6 +138,7 @@ class Marketing {
'parent' => 'woocommerce-marketing',
'nav_args' => array(
'parent' => 'marketing',
'order' => 10,
),
]
);

View File

@ -364,6 +364,7 @@ class Menu {
'capability' => $post_type_object->cap->edit_posts,
'id' => "{$post_type}-all-items",
'url' => "edit.php?post_type={$post_type}",
'order' => 10,
),
$menu_args
),
@ -374,6 +375,7 @@ class Menu {
'capability' => $post_type_object->cap->create_posts,
'id' => "{$post_type}-add-new",
'url' => "post-new.php?post_type={$post_type}",
'order' => 20,
),
$menu_args
),