Skip to content

Commit

Permalink
chore: revert starter site menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Jul 3, 2024
1 parent 5b999e1 commit 42c6c1c
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions inc/compatibility/starter_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ public function get() {
'object' => 'page',
'object_id' => '{{' . self::HOME_SLUG . '}}',
],
'link_about' => [
'type' => 'custom',
'title' => 'About Us',
'url' => home_url( self::ABOUT_SLUG ),
'page_about' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::ABOUT_SLUG . '}}',
],
'page_portofolio' => [
'type' => 'post_type',
Expand All @@ -129,15 +129,15 @@ public function get() {
'object' => 'page',
'object_id' => '{{' . self::PROJECT_DETAILS . '}}',
],
'link_blog' => [
'type' => 'custom',
'title' => 'News',
'url' => home_url( self::BLOG_SLUG ),
'page_blog' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::BLOG_SLUG . '}}',
],
'link_contact' => [
'type' => 'custom',
'title' => 'Contact Us',
'url' => home_url( self::CONTACT ),
'page_contact' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::CONTACT . '}}',
],
];

Expand All @@ -147,20 +147,20 @@ public function get() {
'object' => 'page',
'object_id' => '{{' . self::HOME_SLUG . '}}',
],
'link_blog' => [
'type' => 'custom',
'title' => 'Blog',
'url' => home_url( self::HOME_SLUG ),
'page_blog' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::BLOG_SLUG . '}}',
],
'link_about' => [
'type' => 'custom',
'title' => 'About',
'url' => home_url( self::ABOUT_SLUG ),
'page_about' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::ABOUT_SLUG . '}}',
],
'link_contact' => [
'type' => 'custom',
'title' => 'Contact',
'url' => home_url( self::CONTACT ),
'page_contact' => [
'type' => 'post_type',
'object' => 'page',
'object_id' => '{{' . self::CONTACT . '}}',
],
];

Expand Down

0 comments on commit 42c6c1c

Please sign in to comment.