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
710
0
Share
WP CLI
Given at MWUG 2014, this talk covers the basics of terminal use and WP CLI
Tom J Nowell
August 20, 2014
More Decks by Tom J Nowell
See All by Tom J Nowell
Using Blocks Outside The Editor
tarendai
0
1.1k
Composer_and_WordPress__1_.pdf
tarendai
0
95
REST APIs for Absolute Beginners
tarendai
0
1k
VVV 2
tarendai
0
820
WordCamp Europe 2016 - Handling Anxiety
tarendai
1
530
Escape From New York
tarendai
0
760
WP The Right Way
tarendai
0
1.1k
Code Deodorant 2014
tarendai
1
780
Adv WP CLI
tarendai
0
750
Other Decks in Programming
See All in Programming
一度始めたらやめられない開発効率向上術 / Findy あなたのdotfilesを教えて!
k0kubun
3
2.6k
Reactive ❤️ Loom: A Forbidden Love Story
franz1981
2
210
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
8
3.7k
Fundamentals of Software Engineering In the Age of AI
therealdanvega
2
310
今年もTECHSCOREブログを書き続けます!
hiraoku101
0
200
実践ハーネスエンジニアリング #MOSHTech
kajitack
7
5.1k
ロボットのための工場に灯りは要らない
watany
12
3.2k
モダンOBSプラグイン開発
umireon
0
190
Codex CLIのSubagentsによる並列API実装 / Parallel API Implementation with Codex CLI Subagents
takatty
2
730
Nuxt Server Components
wattanx
0
220
飯MCP
yusukebe
0
420
GC言語のWasm化とComponent Modelサポートの実践と課題 - Scalaの場合
tanishiking
0
130
Featured
See All Featured
How Fast Is Fast Enough? [PerfNow 2025]
tammyeverts
3
510
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.9k
Marketing to machines
jonoalderson
1
5.1k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
234
17k
Stewardship and Sustainability of Urban and Community Forests
pwiseman
0
160
Leveraging LLMs for student feedback in introductory data science courses - posit::conf(2025)
minecr
1
210
Being A Developer After 40
akosma
91
590k
Ten Tips & Tricks for a 🌱 transition
stuffmc
0
93
The Illustrated Guide to Node.js - THAT Conference 2024
reverentgeek
1
320
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
122
21k
Crafting Experiences
bethany
1
100
Leading Effective Engineering Teams in the AI Era
addyosmani
9
1.8k
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
[email protected]
--role=author
A demonstration
Questions?