File size: 1,677 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
export default [
{
icon: 'dashicons-feedback',
slug: 'feedback',
title: 'Feedback',
type: 'menu-item',
url: 'https://examplewebsite.wordpress.com/wp-admin/admin.php?page=feedback',
children: [
{
parent: 'feedback',
slug: 'edit-phppost_typefeedback',
title: 'Feedback',
type: 'submenu-item',
url: 'https://examplewebsite.wordpress.com/wp-admin/admin.php?page=jetpack-forms',
},
{
parent: 'feedback',
slug: 'polls',
title: 'Polls',
type: 'submenu-item',
url: 'http://feedback?page=polls',
},
{
parent: 'feedback',
slug: 'ratings',
title: 'Ratings',
type: 'submenu-item',
url: 'http://feedback?page=ratings',
},
],
},
{
icon: 'dashicons-dashboard',
slug: 'index-php',
title: 'Dashboard',
type: 'menu-item',
url: 'https://examplewebsite.wordpress.com/wp-admin/index.php',
children: [
{
parent: 'index.php',
slug: 'index-php',
title: 'Home',
type: 'submenu-item',
url: 'https://examplewebsite.wordpress.com/wp-admin/index.php',
},
{
parent: 'index.php',
slug: 'my-comments',
title: 'Comments I’ve Made',
type: 'submenu-item',
url: 'index.php?page=my-comments',
},
{
parent: 'index.php',
slug: 'stats',
title: 'Site Stats',
type: 'submenu-item',
url: 'index.php?page=stats',
},
{
parent: 'index.php',
slug: 'my-blogs',
title: 'My Blogs',
type: 'submenu-item',
url: 'index.php?page=my-blogs',
},
{
parent: 'index.php',
slug: 'subscriptions',
title: 'Blogs I Follow',
type: 'submenu-item',
url: 'index.php?page=subscriptions',
},
],
},
];
|