{"id":4277,"date":"2018-01-03T21:35:57","date_gmt":"2018-01-03T21:35:57","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/01\/03\/wp-cli-search-replace-command\/"},"modified":"2023-07-06T13:18:01","modified_gmt":"2023-07-06T17:18:01","slug":"wp-cli-search-replace-command","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/","title":{"rendered":"WP-CLI search-replace Command"},"content":{"rendered":"\n<p><strong>WP-CLI<\/strong>, <em>WordPress Command Line Interface<\/em> makes <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/how-to-copy-post-content-html-from-wordpress-with-wp-cli\/\">managing your WordPress website(<\/a>s) simple if you are affluent in working through the <em>Command Line Interface<\/em> (<strong>CLI<\/strong>). InMotion Hosting&#8217;s <a href=\"https:\/\/www.inmotionhosting.com\/wordpress-hosting#specifications\">WordPress Hosting<\/a> includes WP-CLI to supplement managing your WordPress website(s). For example, the <em>WP-CLI command<\/em> <strong>search-replace<\/strong> will search for a string of data (that you specify) and replaces it with another (that you specify).<\/p>\n\n\n\n<p>This has a lot of useful applications, such as changing the website&#8217;s URL\/domain, updating a file path, or even replacing every <i>https:\/\/<\/i> call to <i>https:\/\/<\/i> throughout the database. In this guide, you will learn how to use the <em>WP-CLI command<\/em> <strong>search-replace<\/strong> to replace an old URL with a new URL and replace all <i>https:\/\/<\/i> calls to <i>https:\/\/<\/i>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#replace-siteurl\">Old URL to New URL<\/a><\/li>\n\n\n\n<li><a href=\"#replace-http\">https:\/\/ to HTTPS:\/\/<\/a><\/li>\n<\/ul>\n\n\n\n<div class=\"alert alert-danger\" role=\"alert\"><b>WARNING: Before proceeding with any of the steps outlined in this article<\/b>, we strongly recommend you <a title=\"Click here to navigate to our guide and learn how to create a MySQL database backup in cPanel.\" href=\"\/support\/edu\/cpanel\/cpanel-backups\/#database\" target=\"_blank\" rel=\"noopener noreferrer\">create a backup of your website&#8217;s database<\/a>. Although unlikely, the changes that are made using the <em>search-replace<\/em> command may cause your website to behave unexpectedly or even corrupt the database information. Creating a backup of the database <i><u>BEFORE<\/u><\/i> making changes to it, will ensure a working backup is available to <a title=\"Click here to navigate to our guide and learn how to restore your MySQL database backup.\" href=\"\/support\/edu\/cpanel\/cpanel-backups\/#restore\" target=\"_blank\" rel=\"noopener noreferrer\">restore<\/a>, in case of unexpected results.<\/div>\n\n\n\n<p><a name=\"replace-siteurl\"><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"replace-siteurl\">Old URL to New URL<\/h2>\n\n\n\n<p>WP-CLI&#8217;s search-replace command helps replace the URL configured for your website, should you decide to change the domain. For example, if you built a website on <i>https:\/\/new.example.com<\/i> you can use this command to replace your database details to use <i>https:\/\/example.com<\/i>.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li><a title=\"Click here to navigate to our guide and learn how to SSH into your server.\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website you want to change the URL for.<\/li>\n\n\n\n<li>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 noreferrer\">document root directory of your website<\/a>.\n<p>Example: <\/p><pre>cd <b>public_html\/my_website<\/b><\/pre><p><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><b>public_html\/my_website<\/b><\/span> with the actual path to the document root directory of your website.<\/div>\n<\/li>\n\n\n\n<li>Run the following command:\n<p><\/p><pre>wp search-replace <b>{old URL} {new URL}<\/b> --dry-run<\/pre><p><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\" style=\"color: red;\"><b>{old URL} {new URL}<\/b><\/span> with the actual URLs you would like to find and replace.<\/div>\n<\/li>\n<\/ol>\n\n\n\n<p>The resulting output displays the details, including tables and how many replacements are being made, like in the example output below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted cli\"><span style=\"color: grey;\">exampl3@example.com [~\/public_html]#<\/span> <span style=\"color: red;\">wp search-replace https:\/\/example.com https:\/\/new.example.com --dry-run<\/span> +------------------+-----------------------+--------------+------+ | Table            | Column                | Replacements | Type | +------------------+-----------------------+--------------+------+ | wpcli_commentmeta   | meta_key              | 0            | SQL  |<\/pre>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li>Once you have verified the replacements to be made, you may proceed to run the following command to have the database updated accordingly:\n<p><\/p><pre>wp search-replace https:\/\/example.com https:\/\/new.example.com<\/pre><p><\/p>\n<\/li>\n<\/ol>\n\n\n\n<p>The following output will be displayed:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted cli\"><span style=\"color: grey;\">exampl3@example.com [~\/public_html]#<\/span> <span style=\"color: red;\">wp search-replace https:\/\/example.com https:\/\/new.example.com<\/span> +------------------+-----------------------+--------------+------+ | Table            | Column                | Replacements | Type | +------------------+-----------------------+--------------+------+ | wpcli_commentmeta   | meta_key              | 0            | SQL  |<a name=\"replace-http\"><\/a><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"replace-http\">https:\/\/ to HTTPS:\/\/<\/h2>\n\n\n\n<p>In addition to installing an SSL, you may find it necessary to update your website&#8217;s <i>https:\/\/<\/i> calls to use the secure <i>https:\/\/<\/i> version. This will help eliminate security warnings in browsers that may be detecting your website loading resources over <i>https:\/\/<\/i> rather than the secure <i>https:\/\/<\/i> protocol. These warnings will prevent the &#8220;green padlock&#8221; from displaying in the address bar, indicating a secure connection to your website. However, using WP-CLI&#8217;s search-replace command, you can easily replace https:\/\/ with https:\/\/ to correct these issues.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li><a title=\"Click here to navigate to our guide and learn how to SSH into your server.\" href=\"\/support\/server\/ssh\/shared-reseller-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website you want to manage.<\/li>\n\n\n\n<li>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 noreferrer\">document root directory of your website<\/a>.\n<p>Example: <\/p><pre>cd <b>public_html\/my_website<\/b><\/pre><p><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\"><b>public_html\/my_website<\/b><\/span> with the actual path to the document root directory of your website.<\/div>\n<\/li>\n\n\n\n<li>Run the following command:\n<p><\/p><pre>wp search-replace <b>{https:\/\/URL} {https:\/\/URL}<\/b> --dry-run<\/pre><p><\/p>\n<div class=\"alert alert-info\" role=\"alert\"><b>NOTE: <\/b>Be sure to replace <span class=\"cli\" style=\"color: red;\"><b>{https:\/\/URL} {https:\/\/URL}<\/b><\/span> with the actual URLs you would like to find and replace.<\/div>\n<\/li>\n<\/ol>\n\n\n\n<p>The resulting output displays the details, including tables and how many replacements are being made, like in the example output below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted cli\"><span style=\"color: grey;\">exampl3@example.com [~\/public_html]#<\/span> <span style=\"color: red;\">wp search-replace https:\/\/example.com https:\/\/example.com --dry-run<\/span> +---------------------+-----------------------+--------------+------+ | Table               | Column                | Replacements | Type | +---------------------+-----------------------+--------------+------+ | wpcli_commentmeta   | meta_key              | 0            | SQL  |<\/pre>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li>Once you have verified the replacements to be made, you may proceed to run the following command to have the database updated accordingly:\n<p><\/p><pre>wp search-replace https:\/\/example.com https:\/\/example.com<\/pre><p><\/p>\n<\/li>\n<\/ol>\n\n\n\n<p>The following output will be displayed:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted cli\"><span style=\"color: grey;\">exampl3@example.com [~\/public_html]#<\/span> <span style=\"color: red;\">wp search-replace https:\/\/example.com https:\/\/example.com<\/span> +---------------------+-----------------------+--------------+------+ | Table               | Column                | Replacements | Type | +---------------------+-----------------------+--------------+------+ | wpcli_commentmeta   | meta_key              | 0            | SQL  |<\/pre>\n\n\n\n<p>Congratulations! Now you know how to use <strong>WP-CLI<\/strong>&#8216;s <strong>search-replace<\/strong> command to change your website from using <i>https:\/\/<\/i> to <i>https:\/\/<\/i>.<\/p>\n\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>WP-CLI, WordPress Command Line Interface makes managing your WordPress website(s) simple if you are affluent in working through the Command Line Interface (CLI). InMotion Hosting&#8217;s WordPress Hosting includes WP-CLI to supplement managing your WordPress website(s). For example, the WP-CLI command search-replace will search for a string of data (that you specify) and replaces it with<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"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-4277","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>Learn How to Use the WP-CLI search-replace Command<\/title>\n<meta name=\"description\" content=\"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.\" \/>\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\/wp-cli-search-replace-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Learn How to Use the WP-CLI search-replace Command\" \/>\n<meta property=\"og:description\" content=\"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\" \/>\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-01-03T21:35:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-06T17:18:01+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=\"3 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\/wp-cli-search-replace-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"WP-CLI search-replace Command\",\"datePublished\":\"2018-01-03T21:35:57+00:00\",\"dateModified\":\"2023-07-06T17:18:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\"},\"wordCount\":622,\"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\/wp-cli-search-replace-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\",\"name\":\"Learn How to Use the WP-CLI search-replace Command\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2018-01-03T21:35:57+00:00\",\"dateModified\":\"2023-07-06T17:18:01+00:00\",\"description\":\"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WP-CLI search-replace Command\"}]},{\"@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\/f9a4fc454cd1df128ee8e898d30d4644\",\"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\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Learn How to Use the WP-CLI search-replace Command","description":"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.","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\/wp-cli-search-replace-command\/","og_locale":"en_US","og_type":"article","og_title":"Learn How to Use the WP-CLI search-replace Command","og_description":"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-01-03T21:35:57+00:00","article_modified_time":"2023-07-06T17:18:01+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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"WP-CLI search-replace Command","datePublished":"2018-01-03T21:35:57+00:00","dateModified":"2023-07-06T17:18:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/"},"wordCount":622,"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\/wp-cli-search-replace-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/","name":"Learn How to Use the WP-CLI search-replace Command","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2018-01-03T21:35:57+00:00","dateModified":"2023-07-06T17:18:01+00:00","description":"In this guide, you will learn how to use the WP-CLI command search-replace to replace an old URL with a new URL and replace all https:\/\/ calls to https:\/\/.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/wp-cli-search-replace-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"WP-CLI search-replace Command"}]},{"@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\/f9a4fc454cd1df128ee8e898d30d4644","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\/inmotion-hosting-contributor\/"}]}},"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\/4277","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\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4277"}],"version-history":[{"count":8,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4277\/revisions"}],"predecessor-version":[{"id":105425,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4277\/revisions\/105425"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}