{"id":4262,"date":"2017-12-18T20:50:36","date_gmt":"2017-12-18T20:50:36","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2017\/12\/18\/manage-wordpress-users-using-wp-cli\/"},"modified":"2023-07-06T13:21:21","modified_gmt":"2023-07-06T17:21:21","slug":"manage-wordpress-users-using-wp-cli","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/","title":{"rendered":"Manage WordPress Users Using WP-CLI"},"content":{"rendered":"<div class=\"in_this_tutorial\">\n<h2>In This Tutorial:<\/h2>\n<p><a class=\"btn btn-primary\" href=\"#add-user\" type=\"button\">Add User<\/a> <a class=\"btn btn-primary\" href=\"#list-users\" type=\"button\">List Users<\/a> <a class=\"btn btn-primary\" href=\"#edit-user\" type=\"button\">Edit User<\/a> <a class=\"btn btn-primary\" href=\"#delete-user\" type=\"button\">Delete User<\/a><\/p>\n<\/div>\n<p>InMotion Hosting&#8217;s <a href=\"https:\/\/www.inmotionhosting.com\/wordpress-hosting\">WordPress Hosting<\/a> includes WP-CLI pre-installed. <dfn><abbr title=\"WordPress Command Line Interface\"><strong>WP-CLI<\/strong><\/abbr><\/dfn>, is a compilation of tools and commands that allow you to easily maintain your WordPress website(s) right from the command line. The <em>user<\/em> command allows you to maintain the database of users for your website. With it, you can create, view, edit, and delete users. In this guide, you will learn how to use WP-CLI&#8217;s <em>user<\/em> command to <strong>manage<\/strong> your <strong>WordPress users<\/strong>.<\/p>\n<p><a name=\"add-user\"><\/a><\/p>\n<h2>Add a User<\/h2>\n<p>Using the <span class=\"cli\">wp user<\/span> command, you can create a user to add to your WordPress website. The steps below will guide you through the process of adding a user (with administrator privileges) from the command line.<\/p>\n<ol class=\"article_list\">\n<li><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 noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website.<\/li>\n<li>Use the <span class=\"cli\">cd<\/span> command to switch into 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>.Example: <span class=\"cli\">cd <b>public_html\/my_website<\/b><\/span>\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<li>Run the following command:<span class=\"cli\">wp user create <b>$username<\/b> <b>$emailaddress<\/b> &#8211;role=<b>$role<\/b><\/span>Be sure to replace the (<span class=\"cli\"><b>$username<\/b><\/span> and <span class=\"cli\"><b>$emailaddress<\/b><\/span>) example values with your own custom values and (<span class=\"cli\"><b>$role<\/b><\/span>) the role you would like the user to be configured with. When the command completes running, a password will be returned, as in the example output below:\n<p class=\"cli\">exampl3@example.com [~\/public_html]# wp user create <i>exampl3<\/i> <i>admin@example.com<\/i> &#8211;role=<i>administrator<\/i><br \/>\nSuccess: Created user 2.<br \/>\n<b>Password: srWCdc3c*(&amp;b<\/b><\/p>\n<p>Refer to the table below, to determine what each role&#8217;s capabilities are. This will help you to choose which role to set as the user in the command above.<\/p>\n<div class=\"table-responsive\">\n<p><!--\n\n\n<th><\/th>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<p><!--\n\n\n<td><\/td>\n\n\n--><\/p>\n<table class=\"table table-striped table-bordered\">\n<tbody>\n<tr>\n<th>Role<\/th>\n<th>Description<\/th>\n<\/tr>\n<tr>\n<td>Super Admin<\/td>\n<td>Can access all administration features (including site network administration).<\/td>\n<\/tr>\n<tr>\n<td>Admnistrator<\/td>\n<td>Can access all administration features (within a single site).<\/td>\n<\/tr>\n<tr>\n<td>Editor<\/td>\n<td>Can publish and manage posts (including posts by other users).<\/td>\n<\/tr>\n<tr>\n<td>Author<\/td>\n<td>Can publish and manage their own posts.<\/td>\n<\/tr>\n<tr>\n<td>Contributor<\/td>\n<td>Can write and manage their own posts (but cannot publish).<\/td>\n<\/tr>\n<tr>\n<td>Subscriber<\/td>\n<td>Can only manage their profile.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/li>\n<\/ol>\n<p><a name=\"list-users\"><\/a><\/p>\n<h2>List Users<\/h2>\n<p>The <span class=\"cli\">wp user<\/span> command can also be used to list the users currently in the database. The steps below describe how to list users of your WordPress site with WP-CLI.<\/p>\n<ol class=\"article_list\">\n<li><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 noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website.<\/li>\n<li>Use the <span class=\"cli\">cd<\/span> command to switch into 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>.Example: <span class=\"cli\">cd <b>public_html\/my_website<\/b><\/span>\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<li>Run the following command:<span class=\"cli\">wp user list<\/span>This command&#8217;s output will display the full details of all users.\n<pre class=\"cli\">exampl3@example.com [~\/public_html]# wp user list +----+----------+------------+--------------------+---------------------+-------+ | ID |user_login|display_name| user_email         | user_registered     | roles | +----+----------+------------+--------------------+---------------------+-------+ | 1  | admin    | admin      | admin@example.com  | 2017-12-16 00:57:44 | admin | | 2  | exampl3  | exampl3    | admin1@example.com | 2017-12-18 20:15:53 | admin | +----+----------+------------+--------------------+---------------------+-------+<\/pre>\n<\/li>\n<\/ol>\n<p><a name=\"edit-user\"><\/a><\/p>\n<h2>Edit a User<\/h2>\n<p>The <span class=\"cli\">wp user<\/span> command can also be used to modify the details stored for a user. The steps below will guide you through changing a user&#8217;s email address using WP-CLI.<\/p>\n<ol class=\"article_list\">\n<li><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 noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website.<\/li>\n<li>Use the <span class=\"cli\">cd<\/span> command to switch into 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>.Example: <span class=\"cli\">cd <b>public_html\/my_website<\/b><\/span>\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<li>Run the following command:<span class=\"cli\">wp user update <b>$user<\/b> &#8212;<b>$field<\/b>=<b>$value<\/b><\/span>Be sure to replace the (<span class=\"cli\"><b>$user<\/b><\/span> and <span class=\"cli\"><b>$value<\/b><\/span>) example values with your own custom values and (<span class=\"cli\"><b>$field<\/b><\/span>) the field you would like the user to be modified with. When the command completes running you should see a successful message, as in the example output below:\n<pre class=\"cli\">exampl3@example.com [~\/public_html]# wp user update exampl3 --user_email=wpadmin@example.com \nSuccess: Updated user 2.<\/pre>\n<\/li>\n<\/ol>\n<p><a name=\"delete-user\"><\/a><\/p>\n<h2>Delete a User<\/h2>\n<p>To delete a user, you can use the <span class=\"cli\">wp user<\/span> command. The instructions below will guide you through the process of deleting a WordPress user using WP-CLI.<\/p>\n<ol class=\"article_list\">\n<li><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 noreferrer\">SSH into your server<\/a> as the cPanel user that owns the website.<\/li>\n<li>Use the <span class=\"cli\">cd<\/span> command to switch into 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>.Example: <span class=\"cli\">cd <b>public_html\/my_website<\/b><\/span>\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<li>Run the following command:\n<p class=\"cli\">wp user delete <b>$user<\/b> &#8211;reassign=<b>$username<\/b><\/p>\n<p>Be sure to replace the (<span class=\"cli\"><b>$user<\/b><\/span> and <span class=\"cli\"><b>$username<\/b><\/span>) example values with your own custom values. When the command completes running you should see a successful message, as in the example output below:<\/p>\n<pre class=\"cli\">exampl3@example.com [~\/public_html]# wp user delete exampl3 --reassign=admin Success: Removed user 2 from https:\/\/example.com.<\/pre>\n<\/li>\n<\/ol>\n<p>Congratulations! Now, you know how to manage your WordPress users from the command line, using WP-CLI. To learn more about WP-CLI, be sure to check out our <a title=\"Click here to navigate to our Education Channel to learn more about WP-CLI.\" href=\"\/support\/edu\/wordpress\/wp-cli\/\" target=\"_blank\" rel=\"noopener noreferrer\">WP-CLI Education Channel<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In This Tutorial: Add User List Users Edit User Delete User InMotion Hosting&#8217;s WordPress Hosting includes WP-CLI pre-installed. WP-CLI, is a compilation of tools and commands that allow you to easily maintain your WordPress website(s) right from the command line. The user command allows you to maintain the database of users for your website. With<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-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-4262","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>Manage WordPress Users Using WP-CLI<\/title>\n<meta name=\"description\" content=\"In this guide, you will learn how to use WP-CLI&#039;s user command to add, list, edit, and delete your WordPress users.\" \/>\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\/manage-wordpress-users-using-wp-cli\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Manage WordPress Users Using WP-CLI\" \/>\n<meta property=\"og:description\" content=\"In this guide, you will learn how to use WP-CLI&#039;s user command to add, list, edit, and delete your WordPress users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-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=\"2017-12-18T20:50:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-06T17:21:21+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\/manage-wordpress-users-using-wp-cli\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b\"},\"headline\":\"Manage WordPress Users Using WP-CLI\",\"datePublished\":\"2017-12-18T20:50:36+00:00\",\"dateModified\":\"2023-07-06T17:21:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/\"},\"wordCount\":748,\"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\/manage-wordpress-users-using-wp-cli\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/\",\"name\":\"Manage WordPress Users Using WP-CLI\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2017-12-18T20:50:36+00:00\",\"dateModified\":\"2023-07-06T17:21:21+00:00\",\"description\":\"In this guide, you will learn how to use WP-CLI's user command to add, list, edit, and delete your WordPress users.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Manage WordPress Users 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":"Manage WordPress Users Using WP-CLI","description":"In this guide, you will learn how to use WP-CLI's user command to add, list, edit, and delete your WordPress users.","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\/manage-wordpress-users-using-wp-cli\/","og_locale":"en_US","og_type":"article","og_title":"Manage WordPress Users Using WP-CLI","og_description":"In this guide, you will learn how to use WP-CLI's user command to add, list, edit, and delete your WordPress users.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2017-12-18T20:50:36+00:00","article_modified_time":"2023-07-06T17:21:21+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\/manage-wordpress-users-using-wp-cli\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5fbfcaed32a2672fb83ab312f5b7237b"},"headline":"Manage WordPress Users Using WP-CLI","datePublished":"2017-12-18T20:50:36+00:00","dateModified":"2023-07-06T17:21:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/"},"wordCount":748,"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\/manage-wordpress-users-using-wp-cli\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/","name":"Manage WordPress Users Using WP-CLI","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2017-12-18T20:50:36+00:00","dateModified":"2023-07-06T17:21:21+00:00","description":"In this guide, you will learn how to use WP-CLI's user command to add, list, edit, and delete your WordPress users.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/wp-cli\/manage-wordpress-users-using-wp-cli\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Manage WordPress Users 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\/4262","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=4262"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4262\/revisions"}],"predecessor-version":[{"id":105429,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4262\/revisions\/105429"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4262"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4262"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4262"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}