{"id":8886,"date":"2020-04-14T09:41:23","date_gmt":"2020-04-14T06:41:23","guid":{"rendered":"https:\/\/vipestudio.com\/?p=8886"},"modified":"2020-04-14T13:44:35","modified_gmt":"2020-04-14T10:44:35","slug":"wordpress-and-ssh-introduction-to-wp-cli","status":"publish","type":"post","link":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/","title":{"rendered":"WordPress and SSH: Introduction to WP-CLI"},"content":{"rendered":"<p style=\"text-align: left;\">Like we mentioned in Part 1 of this \u201cSSH and WordPress\u201d series, WP-CLI is something that lets you skip the login and navigation and execute text commands for WordPress via a terminal environment. Use WP-CLI, and anything from backups to updates for plugins and queries can all happen in no time.<\/p>\n<h2 style=\"text-align: left;\">What you need for WP-CLI<\/h2>\n<p style=\"text-align: left;\">Some web hosts have WP-CLI by default, in which case, skip right ahead to the next section after \u2018WP-CLI Installation\u2019. For setting WP-CLI up yourself, you\u2019ll need to meet a few requirements. Besides the SSH access we set up in part 1, you\u2019ll need PHP (at least 5.3.2), WordPress 3.4 or newer, and a terminal environment of the sort we\u2019ve already set up.<\/p>\n<h2 style=\"text-align: left;\">WP-CLI Installation<\/h2>\n<p style=\"text-align: left;\">Start by logging in to your server over SSH. You can then use the cURL command or wget command to download WP-CLI. The up-to-date setup (as a .phar file) can be found on the <a href=\"https:\/\/raw.githubusercontent.com\/wp-cli\/builds\/gh-pages\/phar\/wp-cli.phar\" target=\"_blank\" rel=\"noopener noreferrer\">GitHub page for WP-CLI<\/a>. So you can type:<\/p>\n<p style=\"text-align: left;\"><code>cURL \u2013O https:\/\/raw.githubusercontent.com\/wp-cli\/builds\/gh-pages\/phar\/wp-cli.phar<\/code><\/p>\n<p style=\"text-align: left;\">WP-CLI will now be installed to the root directory.<\/p>\n<p style=\"text-align: left;\">For the next part, we need to set permissions so we can execute WP-CLI, for which we enter:<\/p>\n<p style=\"text-align: left;\"><code>chmod +x wp-cli.phar<\/code><\/p>\n<p style=\"text-align: left;\">In addition, you may also move the downloaded .phar file to a folder and name it just \u2018wp\u2019. This way, prefixing \u2018wp\u2019 will make any WP-CLI command work. Type:<\/p>\n<p style=\"text-align: left;\"><code>sudo mv wp-cli.phar \/usr\/local\/bin\/wp<\/code><\/p>\n<p style=\"text-align: left;\">Now we\u2019re good to go.<\/p>\n<h2 style=\"text-align: left;\">Basic WP-CLI Commands<\/h2>\n<p style=\"text-align: left;\">We can now execute the commands. The most basic command \u2018wp help\u2019 is something you can use to access the full WP-CLI help database to learn what each command does, and even what role the subcommands play.<\/p>\n<p style=\"text-align: left;\">In order to execute the help command, you need to move to the directory that you installed WP-CLI to. To do this you may use \u2018ls\u2019 and reveal the current directory status. WP-CLI also allows you to install themes using the following:<\/p>\n<p style=\"text-align: left;\"><code>wp theme install name_of_theme<\/code><\/p>\n<p style=\"text-align: left;\">Then we can activate the theme by:<\/p>\n<p style=\"text-align: left;\"><code>wp theme activate name_of_theme<\/code><\/p>\n<p style=\"text-align: left;\">The themes are directly imported from the Theme Repository.<\/p>\n<p style=\"text-align: left;\">Commands can be used to install plugins as well from the official repository with the following command:<\/p>\n<p style=\"text-align: left;\"><code>wp plugin install name_of_plugin<\/code><\/p>\n<p style=\"text-align: left;\">And activation will be:<\/p>\n<p style=\"text-align: left;\"><code>wp plugin activate name_of_plugin<\/code><\/p>\n<p style=\"text-align: left;\">To disable the plugins, on the other hand, it\u2019s as simple as typing<\/p>\n<p style=\"text-align: left;\"><code>wp plugin deactivate name_of_plugin<\/code><\/p>\n<p style=\"text-align: left;\">You can type<\/p>\n<p style=\"text-align: left;\"><code>wp plugin list<\/code><\/p>\n<p style=\"text-align: left;\">to show all the available plugins. To update all your eligible plugins you can execute<\/p>\n<p style=\"text-align: left;\"><code>wp plugin update<\/code><\/p>\n<p style=\"text-align: left;\">If you want to get some more fine-grained control, type<\/p>\n<p style=\"text-align: left;\"><code>wp plugin update \u2013-all --dry-run<\/code><\/p>\n<p style=\"text-align: left;\">to give you the list of plugins that would be updated by the first command.<\/p>\n<p style=\"text-align: left;\">In fact, even WordPress itself can be installed if you type and execute<\/p>\n<p style=\"text-align: left;\"><code>wp core install<\/code><\/p>\n<p style=\"text-align: left;\">Of course, you need to complete the command with other attributes like URL, username, password and email.<\/p>\n<p style=\"text-align: left;\">To learn more about the WP-CLI commands, you can refer to the official <a href=\"http:\/\/wp-cli.org\/commands\" target=\"_blank\" rel=\"noopener noreferrer\">WP-CLI manual<\/a> at their website.<\/p>\n<p style=\"text-align: left;\">You are now ready to deploy all the advanced and power-user tools and control your WordPress website and environment better. Some hosting solutions will even let you use Git, npm and other tools. As you use SSH and learn more about WP-CLI, you\u2019ll learn more and more things you can achieve with SSH and the command line, and in no time, you\u2019ll be a natural at doing things the smarter way!<\/p>\n<p style=\"text-align: left;\">With the power of SSH in your hands, your WordPress experience is faster, and you can say goodbye to the days of clicking through page after page to perform basic WordPress functions. As promised in part 1, you are now indeed a WordPress ninja with SSH!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Like we mentioned in Part 1 of this \u201cSSH and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":8914,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[116],"tags":[189,185,184,187,186],"class_list":["post-8886","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-freestyle","tag-bash","tag-linux","tag-ssh","tag-terminal","tag-wp-cli"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vipe Team\"\/>\n\t<meta name=\"keywords\" content=\"bash,linux,ssh,terminal,wp-cli,freestyle\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Vipe Studio\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"WordPress and SSH: Introduction to WP-CLI | Vipe Studio\" \/>\n\t\t<meta property=\"og:description\" content=\"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/\" \/>\n\t\t<meta property=\"fb:admins\" content=\"1171080969576819\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1786\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1026\" \/>\n\t\t<meta property=\"article:tag\" content=\"bash\" \/>\n\t\t<meta property=\"article:tag\" content=\"linux\" \/>\n\t\t<meta property=\"article:tag\" content=\"ssh\" \/>\n\t\t<meta property=\"article:tag\" content=\"terminal\" \/>\n\t\t<meta property=\"article:tag\" content=\"wp-cli\" \/>\n\t\t<meta property=\"article:tag\" content=\"freestyle\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-04-14T06:41:23+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2020-04-14T10:44:35+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vipestudio.web\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@Vipe_Studio\" \/>\n\t\t<meta name=\"twitter:title\" content=\"WordPress and SSH: Introduction to WP-CLI | Vipe Studio\" \/>\n\t\t<meta name=\"twitter:description\" content=\"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@Vipe_Studio\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#article\",\"name\":\"WordPress and SSH: Introduction to WP-CLI | Vipe Studio\",\"headline\":\"WordPress and SSH: Introduction to WP-CLI\",\"author\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/20200413_101256-scaled-e1586861066120.jpg\",\"width\":1786,\"height\":1026},\"datePublished\":\"2020-04-14T09:41:23+03:00\",\"dateModified\":\"2020-04-14T13:44:35+03:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#webpage\"},\"articleSection\":\"Freestyle, bash, linux, ssh, terminal, wp-cli\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#listItem\",\"position\":1,\"name\":\"Coding Agency for Web Development\",\"item\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/category\\\/freestyle\\\/#listItem\",\"name\":\"Freestyle\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/category\\\/freestyle\\\/#listItem\",\"position\":2,\"name\":\"Freestyle\",\"item\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/category\\\/freestyle\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#listItem\",\"name\":\"WordPress and SSH: Introduction to WP-CLI\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#listItem\",\"name\":\"Coding Agency for Web Development\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#listItem\",\"position\":3,\"name\":\"WordPress and SSH: Introduction to WP-CLI\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/category\\\/freestyle\\\/#listItem\",\"name\":\"Freestyle\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#organization\",\"name\":\"Vipe Studio\",\"description\":\"WordPress Agency\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/\",\"email\":\"reach@vipestudio.com\",\"telephone\":\"+359988993128\",\"foundingDate\":\"2016-06-01\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/logo_big.png\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#organizationLogo\",\"width\":6721,\"height\":1943},\"image\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/vipestudio.web\\\/\",\"https:\\\/\\\/twitter.com\\\/Vipe_Studio\",\"https:\\\/\\\/www.instagram.com\\\/vipestudio.web\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UC49xvWzO1HZws9L5SLe3AHg\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/vipe-studio-ltd\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/author\\\/admin\\\/\",\"name\":\"Vipe Team\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#webpage\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/\",\"name\":\"WordPress and SSH: Introduction to WP-CLI | Vipe Studio\",\"description\":\"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/author\\\/admin\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/20200413_101256-scaled-e1586861066120.jpg\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#mainImage\",\"width\":1786,\"height\":1026},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/wordpress-and-ssh-introduction-to-wp-cli\\\/#mainImage\"},\"datePublished\":\"2020-04-14T09:41:23+03:00\",\"dateModified\":\"2020-04-14T13:44:35+03:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/\",\"name\":\"Vipe Studio\",\"description\":\"WordPress Agency\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/vipestudio.com\\\/en\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>WordPress and SSH: Introduction to WP-CLI | Vipe Studio<\/title>\n\n","aioseo_head_json":{"title":"WordPress and SSH: Introduction to WP-CLI | Vipe Studio","description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","canonical_url":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/","robots":"max-image-preview:large","keywords":"bash,linux,ssh,terminal,wp-cli,freestyle","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#article","name":"WordPress and SSH: Introduction to WP-CLI | Vipe Studio","headline":"WordPress and SSH: Introduction to WP-CLI","author":{"@id":"https:\/\/vipestudio.com\/en\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/vipestudio.com\/en\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg","width":1786,"height":1026},"datePublished":"2020-04-14T09:41:23+03:00","dateModified":"2020-04-14T13:44:35+03:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#webpage"},"isPartOf":{"@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#webpage"},"articleSection":"Freestyle, bash, linux, ssh, terminal, wp-cli"},{"@type":"BreadcrumbList","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/#listItem","position":1,"name":"Coding Agency for Web Development","item":"https:\/\/vipestudio.com\/en\/","nextItem":{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/category\/freestyle\/#listItem","name":"Freestyle"}},{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/category\/freestyle\/#listItem","position":2,"name":"Freestyle","item":"https:\/\/vipestudio.com\/en\/category\/freestyle\/","nextItem":{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#listItem","name":"WordPress and SSH: Introduction to WP-CLI"},"previousItem":{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/#listItem","name":"Coding Agency for Web Development"}},{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#listItem","position":3,"name":"WordPress and SSH: Introduction to WP-CLI","previousItem":{"@type":"ListItem","@id":"https:\/\/vipestudio.com\/en\/category\/freestyle\/#listItem","name":"Freestyle"}}]},{"@type":"Organization","@id":"https:\/\/vipestudio.com\/en\/#organization","name":"Vipe Studio","description":"WordPress Agency","url":"https:\/\/vipestudio.com\/en\/","email":"reach@vipestudio.com","telephone":"+359988993128","foundingDate":"2016-06-01","logo":{"@type":"ImageObject","url":"https:\/\/vipestudio.com\/wp-content\/uploads\/2021\/07\/logo_big.png","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#organizationLogo","width":6721,"height":1943},"image":{"@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/vipestudio.web\/","https:\/\/twitter.com\/Vipe_Studio","https:\/\/www.instagram.com\/vipestudio.web\/","https:\/\/www.youtube.com\/channel\/UC49xvWzO1HZws9L5SLe3AHg","https:\/\/www.linkedin.com\/company\/vipe-studio-ltd\/"]},{"@type":"Person","@id":"https:\/\/vipestudio.com\/en\/author\/admin\/#author","url":"https:\/\/vipestudio.com\/en\/author\/admin\/","name":"Vipe Team"},{"@type":"WebPage","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#webpage","url":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/","name":"WordPress and SSH: Introduction to WP-CLI | Vipe Studio","description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/vipestudio.com\/en\/#website"},"breadcrumb":{"@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#breadcrumblist"},"author":{"@id":"https:\/\/vipestudio.com\/en\/author\/admin\/#author"},"creator":{"@id":"https:\/\/vipestudio.com\/en\/author\/admin\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg","@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#mainImage","width":1786,"height":1026},"primaryImageOfPage":{"@id":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/#mainImage"},"datePublished":"2020-04-14T09:41:23+03:00","dateModified":"2020-04-14T13:44:35+03:00"},{"@type":"WebSite","@id":"https:\/\/vipestudio.com\/en\/#website","url":"https:\/\/vipestudio.com\/en\/","name":"Vipe Studio","description":"WordPress Agency","inLanguage":"en-US","publisher":{"@id":"https:\/\/vipestudio.com\/en\/#organization"}}]},"og:locale":"en_US","og:site_name":"Vipe Studio","og:type":"article","og:title":"WordPress and SSH: Introduction to WP-CLI | Vipe Studio","og:description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","og:url":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/","fb:admins":"1171080969576819","og:image":"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg","og:image:secure_url":"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg","og:image:width":1786,"og:image:height":1026,"article:tag":["bash","linux","ssh","terminal","wp-cli","freestyle"],"article:published_time":"2020-04-14T06:41:23+00:00","article:modified_time":"2020-04-14T10:44:35+00:00","article:publisher":"https:\/\/www.facebook.com\/vipestudio.web\/","twitter:card":"summary","twitter:site":"@Vipe_Studio","twitter:title":"WordPress and SSH: Introduction to WP-CLI | Vipe Studio","twitter:description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","twitter:creator":"@Vipe_Studio","twitter:image":"https:\/\/vipestudio.com\/wp-content\/uploads\/2020\/04\/20200413_101256-scaled-e1586861066120.jpg"},"aioseo_meta_data":{"post_id":"8886","title":null,"description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"WP-CLI is the perfect bash tool for maintaining your WordPress within the Linux terminal. Learn more about the most useful WordPress SSH techniques.","og_object_type":"article","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-05-21 07:13:38","breadcrumb_settings":null,"limit_modified_date":false,"open_ai":null,"ai":null,"created":"2020-12-21 07:57:26","updated":"2026-05-21 07:13:38"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/vipestudio.com\/en\/\" title=\"Coding Agency for Web Development\">Coding Agency for Web Development<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/vipestudio.com\/en\/category\/freestyle\/\" title=\"Freestyle\">Freestyle<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tWordPress and SSH: Introduction to WP-CLI\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Coding Agency for Web Development","link":"https:\/\/vipestudio.com\/en\/"},{"label":"Freestyle","link":"https:\/\/vipestudio.com\/en\/category\/freestyle\/"},{"label":"WordPress and SSH: Introduction to WP-CLI","link":"https:\/\/vipestudio.com\/en\/wordpress-and-ssh-introduction-to-wp-cli\/"}],"_links":{"self":[{"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/posts\/8886","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/comments?post=8886"}],"version-history":[{"count":0,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/posts\/8886\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/media\/8914"}],"wp:attachment":[{"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/media?parent=8886"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/categories?post=8886"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vipestudio.com\/en\/wp-json\/wp\/v2\/tags?post=8886"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}