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
660
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
1k
Composer_and_WordPress__1_.pdf
tarendai
0
82
REST APIs for Absolute Beginners
tarendai
0
980
VVV 2
tarendai
0
770
WordCamp Europe 2016 - Handling Anxiety
tarendai
1
480
Escape From New York
tarendai
0
720
WP The Right Way
tarendai
0
1k
Code Deodorant 2014
tarendai
1
730
Adv WP CLI
tarendai
0
710
Other Decks in Programming
See All in Programming
CSC305 Lecture 12
javiergs
PRO
0
240
EMこそClaude Codeでコード調査しよう
shibayu36
0
510
Introduce Hono CLI
yusukebe
6
3.3k
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
640
Migration to Signals, Resource API, and NgRx Signal Store
manfredsteyer
PRO
0
130
コードとあなたと私の距離 / The Distance Between Code, You, and I
hiro_y
0
210
TransformerからMCPまで(現代AIを理解するための羅針盤)
mickey_kubo
7
5.8k
Google Opalで使える37のライブラリ
mickey_kubo
3
170
ボトムアップの生成AI活用を推進する社内AIエージェント開発
aku11i
0
1.4k
Blazing Fast UI Development with Compose Hot Reload (droidcon London 2025)
zsmb
0
430
エンジニアインターン「Treasure」とHonoの2年、そして未来へ / Our Journey with Hono Two Years at Treasure and Beyond
carta_engineering
0
460
Swift Concurrency 年表クイズ
omochi
3
210
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
The Power of CSS Pseudo Elements
geoffreycrofte
80
6k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
10
900
Gamification - CAS2011
davidbonilla
81
5.5k
Build your cross-platform service in a week with App Engine
jlugia
234
18k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
Producing Creativity
orderedlist
PRO
348
40k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Into the Great Unknown - MozCon
thekraken
40
2.1k
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?