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
630
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
930
Composer_and_WordPress__1_.pdf
tarendai
0
69
REST APIs for Absolute Beginners
tarendai
0
940
VVV 2
tarendai
0
730
WordCamp Europe 2016 - Handling Anxiety
tarendai
1
450
Escape From New York
tarendai
0
690
WP The Right Way
tarendai
0
1k
Code Deodorant 2014
tarendai
1
700
Adv WP CLI
tarendai
0
670
Other Decks in Programming
See All in Programming
型付け力を強化するための Hoogle のすゝめ / Boosting Your Type Mastery with Hoogle
guvalif
1
250
プロダクト改善のために新しいことを始める -useContextからの卒業、Zustandへ-
rebase_engineering
1
110
Agent Rules as Domain Parser
yodakeisuke
1
450
TypeScript LSP の今までとこれから
quramy
1
460
Perplexity Slack Botを作ってAI活用を進めた話 / AI Engineering Summit プレイベント
n3xem
0
460
Step up the performance game with Spring Boot and Project Leyden
mhalbritter
0
170
「兵法」から見る質とスピード
ickx
0
240
生成AIで日々のエラー調査を進めたい
yuyaabo
0
230
JSAI2025 RecSysChallenge2024 優勝報告
unonao
1
420
Haskell でアルゴリズムを抽象化する / 関数型言語で競技プログラミング
naoya
4
400
The Evolution of Enterprise Java with Jakarta EE 11 and Beyond
ivargrimstad
0
360
Feature Flag 自動お掃除のための TypeScript プログラム変換
azrsh
PRO
4
670
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
94
13k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
123
52k
Designing for humans not robots
tammielis
253
25k
Into the Great Unknown - MozCon
thekraken
39
1.8k
Facilitating Awesome Meetings
lara
54
6.4k
Building Applications with DynamoDB
mza
95
6.4k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
48
5.4k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Site-Speed That Sticks
csswizardry
9
620
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
BBQ
matthewcrist
89
9.7k
Agile that works and the tools we love
rasmusluckow
329
21k
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?