Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
WP CLI
Search
Tom J Nowell
August 20, 2014
Programming
0
610
WP CLI
Given at MWUG 2014, this talk covers the basics of terminal use and WP CLI
Tom J Nowell
August 20, 2014
Tweet
Share
More Decks by Tom J Nowell
See All by Tom J Nowell
Using Blocks Outside The Editor
tarendai
0
910
Composer_and_WordPress__1_.pdf
tarendai
0
69
REST APIs for Absolute Beginners
tarendai
0
930
VVV 2
tarendai
0
710
WordCamp Europe 2016 - Handling Anxiety
tarendai
1
430
Escape From New York
tarendai
0
680
WP The Right Way
tarendai
0
1k
Code Deodorant 2014
tarendai
1
690
Adv WP CLI
tarendai
0
670
Other Decks in Programming
See All in Programming
「影響が少ない」を自分の目でみてみる
o0h
PRO
2
1.2k
On-the-fly Suggestions of Rewriting Method Deprecations
ohbarye
1
4.1k
「理解」を重視したAI活用開発
fast_doctor
0
220
GitHub Copilot for Azureを使い倒したい
ymd65536
1
220
カウシェで Four Keys の改善を試みた理由
ike002jp
1
110
Contribute to Comunities | React Tokyo Meetup #4 LT
sasagar
0
580
Flutterでllama.cppをつかってローカルLLMを試してみた
sakuraidayo
0
110
Deoptimization: How YJIT Speeds Up Ruby by Slowing Down / RubyKaigi 2025
k0kubun
1
1.5k
エンジニアが挑む、限界までの越境
nealle
1
290
監視 やばい
syossan27
11
10k
AI時代の開発者評価について
ayumuu
0
220
Enterprise Web App. Development (1): Build Tool Training Ver. 5
knakagawa
1
120
Featured
See All Featured
Visualization
eitanlees
146
16k
Gamification - CAS2011
davidbonilla
81
5.2k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
13
810
The Straight Up "How To Draw Better" Workshop
denniskardys
233
140k
It's Worth the Effort
3n
184
28k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
178
53k
The Art of Programming - Codeland 2020
erikaheidi
53
13k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
45
9.5k
Building Flexible Design Systems
yeseniaperezcruz
329
39k
BBQ
matthewcrist
88
9.6k
Producing Creativity
orderedlist
PRO
344
40k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.2k
Transcript
WP CLI A talk by Tom J Nowell
I’m Tom J Nowell Code For The People
I’ll Cover • What is WP CLI • What’s a
Command Line • Running a command • WP CLI Commands
WP CLI WordPress, Command Line Interface A tool for terminal
users
What is The Terminal?
❯ date
❯ date Wed 20 Aug 2014 17:46:41 BST
❯ command parameter1 parameter2 etc...
Essential Commands • ls what’s inside this folder • cd
foldername change into another folder • cd .. go up one folder
Opening the Terminal
None
Once installed, open your WordPress folder on the terminal GIF
by Chris Coyier of CSS Tricks
Some of the Things WP CLI Can Do • Create
Posts • Create Users • Download plugins and themes • Database Queries • Installing WordPress
E.g. Adding an author to a site: ❯ wp user
create bob bob@example.com --role=author
A demonstration
Questions?