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:
parent
057725895b
commit
17b7fc0f1f
|
@ -138,6 +138,7 @@ class Marketing {
|
|||
'parent' => 'woocommerce-marketing',
|
||||
'nav_args' => array(
|
||||
'parent' => 'marketing',
|
||||
'order' => 10,
|
||||
),
|
||||
]
|
||||
);
|
||||
|
|
|
@ -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
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue