{"id":4408,"date":"2018-02-20T22:38:50","date_gmt":"2018-02-20T22:38:50","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/02\/20\/how-to-find-details-of-menus-using-wp-cli\/"},"modified":"2021-08-16T22:28:29","modified_gmt":"2021-08-17T02:28:29","slug":"how-to-find-details-of-menus-using-wp-cli","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/","title":{"rendered":"How to Find Details of Menus Using WP-CLI"},"content":{"rendered":"<div class=\"in_this_tutorial\">\n<h2>In This Tutorial:<\/h2>\n<p><a class=\"btn btn-primary\" href=\"#list-existing-menus\" type=\"button\">List Menus<\/a> <a class=\"btn btn-primary\" href=\"#list-menu-locations\" type=\"button\">List Menu Locations<\/a> <a class=\"btn btn-primary\" href=\"#list-menu-items\" type=\"button\">List Menu Items<\/a><\/p>\n<\/div>\n<p>Knowing certain details about your menu(s) is important for managing them via the command line. For instance, if you want to display a particular menu on your website, you must know the available locations to include in the syntax of the command. However, thanks to the available sub-command <i>list<\/i>, we can gather the details we need, without having to leave the command line. In this guide, you will learn the steps to <strong>find important details about your menu(s)<\/strong> to manage them using <strong>WP-CLI<\/strong>.<\/p>\n<p><a name=\"list-existing-menus\"><\/a><\/p>\n<h2>List Existing Menus<\/h2>\n<p>The menus you have created can be listed using the <em>wp menu list<\/em> command. Follow the steps below to list your menus and obtain the additional information needed to manage them.<\/p>\n<ol class=\"article_list\">\n<li>\n<p><a title=\"Click here to navigate to our guide and learn how to use SSH to connect to your server\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\" rel=\"noopener\">SSH into your server<\/a> as the cPanel user that owns the website you would like to work with.<\/p>\n<\/li>\n<li>\n<p>Use the <span class=\"cli\">cd<\/span> command to switch to the <a title=\"Click here to navigate to our guide and learn how to find the document root directory of your website.\" href=\"\/support\/website\/where-to-upload-files\/\" target=\"_blank\" rel=\"noopener\">document root directory of your website<\/a>.<\/p>\n<p>Example: <span class=\"cli\">cd <b>public_html\/wp<\/b><\/span><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><b>public_html\/wp<\/b><\/span> with the actual path to the document root directory of your website.<\/div>\n<\/li>\n<li>\n<p>Run the following command:<\/p>\n<p><span class=\"cli\">wp menu list<\/span><\/p>\n<p>The output will be similar to the example below:<\/p>\n<pre class=\"cli\">exampl3@example.com [~\/public_html\/wp]# wp menu list +---------+------------------+------------------+-----------+-------+ | term_id | name             | slug             | locations | count | +---------+------------------+------------------+-----------+-------+ | 8       | Primary New Menu | primary-new-menu |           | 0     | | 4       | primary-nav      | primary-nav      | top       | 0     | | 7       | primary-new      | primary-new      |           | 0     | | 5       | social-media     | social-media     | social    | 0     | +---------+------------------+------------------+-----------+-------+<\/pre>\n<p>Notice that the output is formatted nicely displaying the details of the existing menus. For instance, the menu named: <b>primary-nav<\/b> is assigned to the location: <b>top<\/b>. This means that the <i>primary-nav<\/i> menu will be displayed where the <i>top<\/i> menu is located according to the active theme.<\/p>\n<\/li>\n<\/ol>\n<p><a name=\"list-menu-locations\"><\/a><\/p>\n<h2>List Available Menu Locations<\/h2>\n<p>In order to display a menu on your website you assign the menu a location. Since you must first know the location(s) available to specify in the command, you need to find the location details. The instructions below will guide you through the process of identifying the available menu locations (for the theme that is currently activated), using WP-CLI.<\/p>\n<ol class=\"article_list\">\n<li style=\"list-style-type: none;\">\n<ol class=\"article_list\">\n<li>\n<p><a title=\"Click here to navigate to our guide and learn how to use SSH to connect to your server\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\" rel=\"noopener\">SSH into your server<\/a> as the cPanel user that owns the website you would like to work with.<\/p>\n<\/li>\n<li>\n<p>Use the <span class=\"cli\">cd<\/span> command to switch to the <a title=\"Click here to navigate to our guide and learn how to find the document root directory of your website.\" href=\"\/support\/website\/where-to-upload-files\/\" target=\"_blank\" rel=\"noopener\">document root directory of your website<\/a>.<\/p>\n<p>Example: <span class=\"cli\">cd <b>public_html\/wp<\/b><\/span><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><b>public_html\/wp<\/b><\/span> with the actual path to the document root directory of your website.<\/div>\n<\/li>\n<li>\n<p>Run the following command:<\/p>\n<p><span class=\"cli\">wp menu location list<\/span><\/p>\n<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p>The output below, provides an example that lists the available menu locations for your enabled theme.<\/p>\n<pre class=\"cli\">exampl3@example.com [~\/public_html\/wp]# wp menu location list +----------+-------------------+ | location | description       | +----------+-------------------+ | <i>top<\/i>      | Top Menu          | | <i>social<\/i>   | Social Links Menu | +----------+-------------------+<\/pre>\n<p>Here, you can see the two (2) available locations, <i>top<\/i> and <i>social<\/i>.<\/p>\n<p><a name=\"list-menu-items\"><\/a><\/p>\n<h2>List Menu Items<\/h2>\n<p>You can review the items included in a particular menu by using the <em>wp menu item list<\/em> sub-command. Follow the steps below to <strong>find the items included in a menu<\/strong>, using <strong>WP-CLI<\/strong>.<\/p>\n<ol class=\"article_list\">\n<li>\n<p><a title=\"Click here to navigate to our guide and learn how to use SSH to connect to your server\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\" rel=\"noopener\">SSH into your server<\/a> as the cPanel user that owns the website you would like to work with.<\/p>\n<\/li>\n<li>\n<p>Use the <span class=\"cli\">cd<\/span> command to switch to the <a title=\"Click here to navigate to our guide and learn how to find the document root directory of your website.\" href=\"\/support\/website\/where-to-upload-files\/\" target=\"_blank\" rel=\"noopener\">document root directory of your website<\/a>.<\/p>\n<p>Example: <span class=\"cli\">cd <b>public_html\/wp<\/b><\/span><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><b>public_html\/wp<\/b><\/span> with the actual path to the document root directory of your website.<\/div>\n<\/li>\n<li>\n<p>Run the following command:<\/p>\n<p><span class=\"cli\">wp menu item list <i>primary-nav<\/i><\/span><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><i>primary-nav<\/i><\/span> with the actual <a title=\"Click here to review the section in this article for how to list existing menus.\" href=\"#list-existing-menus\" target=\"_blank\" rel=\"noopener\">name of the menu<\/a> you would like to list items for.<\/div>\n<p>The output below provides an example of the menu items and details listed:<\/p>\n<pre class=\"cli\">exampl3@example.com [~\/public_html\/wp]# wp menu item list primary-nav +-------+-----------+--------------+---------------------------------+----------+ | db_id | type      | title        | link                            | position | +-------+-----------+--------------+---------------------------------+----------+ | 38    | post_type | Home         | https:\/\/w...com\/wp\/              | 1        | | 43    | post_type | About Us     | https:\/\/w...com\/wp\/about-us\/     | 2        | | 45    | post_type | Clients      | https:\/\/w...com\/wp\/clients\/      | 3        | | 47    | post_type | Gallery      | https:\/\/w...com\/wp\/gallery\/      | 4        | | 49    | post_type | Resume       | https:\/\/w...com\/wp\/resume\/       | 5        | | 51    | post_type | Info         | https:\/\/w...com\/wp\/info\/         | 6        | | 53    | post_type | Testimonials | https:\/\/w...com\/wp\/testimonials\/ | 7        | | 55    | post_type | Contact Us   | https:\/\/w...com\/wp\/contact-us\/   | 8        | | 23    | taxonomy  | Blog         | https:\/\/w...com\/wp\/.\/blog\/       | 9        | +-------+-----------+--------------+---------------------------------+----------+<\/pre>\n<\/li>\n<\/ol>\n<p>Now that you are familiar with <strong>how to find the details for your menu(s)<\/strong>, you can utilize <strong>WP-CLI<\/strong> to manage your menu(s) from the command line.\u00a0<\/p>\n\n<p>Learn more about <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/\">WP-CLI<\/a>, the command-line interface for WordPress, and how to streamline your WordPress maintenance workflows!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In This Tutorial: List Menus List Menu Locations List Menu Items Knowing certain details about your menu(s) is important for managing them via the command line. For instance, if you want to display a particular menu on your website, you must know the available locations to include in the syntax of the command. However, thanks<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\"> Read More ><\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4374],"tags":[],"class_list":["post-4408","post","type-post","status-publish","format-standard","hentry","category-wp-cli"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Find Details of Menus Using WP-CLI | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Find Details of Menus Using WP-CLI | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-20T22:38:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T02:28:29+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b\"},\"headline\":\"How to Find Details of Menus Using WP-CLI\",\"datePublished\":\"2018-02-20T22:38:50+00:00\",\"dateModified\":\"2021-08-17T02:28:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\"},\"wordCount\":578,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"WP-CLI\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\",\"name\":\"How to Find Details of Menus Using WP-CLI | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2018-02-20T22:38:50+00:00\",\"dateModified\":\"2021-08-17T02:28:29+00:00\",\"description\":\"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Find Details of Menus Using WP-CLI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/john-paul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Find Details of Menus Using WP-CLI | InMotion Hosting","description":"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/","og_locale":"en_US","og_type":"article","og_title":"How to Find Details of Menus Using WP-CLI | InMotion Hosting","og_description":"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-02-20T22:38:50+00:00","article_modified_time":"2021-08-17T02:28:29+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b"},"headline":"How to Find Details of Menus Using WP-CLI","datePublished":"2018-02-20T22:38:50+00:00","dateModified":"2021-08-17T02:28:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/"},"wordCount":578,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["WP-CLI"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/","name":"How to Find Details of Menus Using WP-CLI | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2018-02-20T22:38:50+00:00","dateModified":"2021-08-17T02:28:29+00:00","description":"In this guide, we will provide the steps to display important details needed to manage your WordPress website menu(s) using WP-CLI.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-find-details-of-menus-using-wp-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Find Details of Menus Using WP-CLI"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/john-paul\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4374,"name":"WP-CLI","slug":"wp-cli","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4408","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4408"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4408\/revisions"}],"predecessor-version":[{"id":83764,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4408\/revisions\/83764"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}