SlideShare a Scribd company logo
Practical REST API
Why admin-ajax.php should be avoided and how
Aki Björklund
CTO,H1
@akibjorklund
Communication between JavaScript and PHP
is done with Ajax
Historically that is done in WordPress by
calling

/wp-admin/admin-ajax.php
Why admin-ajax.php is bad?
1.
Inefficient
2.
Not cached
3.
No infrastructure like authentication, data
validation, …
4.

Ad hoc: messy
WordPress REST API in core from 4.4
There are no built-in endpoints yet
Unless you install the REST API plugin
In many cases no need to write any PHP to
do a lot.
But what can you do just with
what the core already has?
Example: Comment Reactions
Practical REST API
Converting admin-ajax.php to
REST API
Before
Practical REST API
Practical REST API
Practical REST API
Practical REST API
After
Practical REST API
Practical REST API
Practical REST API
Practical REST API
Best practice is to implement what you
just saw as a REST Controller. Currently
available only with the REST API plugin.
Summary
Use the REST API instead of
admin-ajax.php
It’s faster and cleaner
It’s also both easy to implement
and migrate to
.
Aki Björklund
CTO,H1
@akibjorklund

More Related Content

What's hot (18)

PPTX
Automation Zaman Now
Ibnu Fajar Yunardi
 
PPT
Building High Performance Web Applications
Jeff Whelpley
 
PDF
Ruby on Rails and AWS Elastic Beanstalk
Nathalie Steinmetz
 
PPTX
Alexandre Roman - How Pivotal Cloud Foundry can help you run Spring at scale ...
Codemotion
 
PDF
Usable REST APIs. Jrubyconf Edition. Javier Ramirez @ teowaki
javier ramirez
 
PPTX
Update Smart: Use a Staging Site!
Meagan Hanes
 
PDF
PHPNW14 - Getting Started With AWS
benwaine
 
PDF
PuppetConf 2016: Site Launch Automation: From Days to Minutes – Kristen Crawf...
Puppet
 
PDF
Are you ready to adopt GraphQL?
Siva Prasad Rao Janapati
 
PDF
Pain Free Frontend Development
Vanessa Böhner
 
PPTX
How to build webapps with tools
Pasindu Perera
 
PDF
SPA Flask Vue
Vanessa Böhner
 
PDF
Automation Best Practices
Sauce Labs
 
PPTX
Glimpse of Loops Vs Set
Mindfire Solutions
 
PDF
Helm your way with Kubernetes
Ana-Maria Mihalceanu
 
PDF
HTBYOOFIYRHT RubyConf
Sandy Vanderbleek
 
PPTX
Immutability: from code to infrastructure, the way to scalability - Breizhca...
Quentin Adam
 
PDF
Is Serverless The New Swiss Cheese?
Chase Douglas
 
Automation Zaman Now
Ibnu Fajar Yunardi
 
Building High Performance Web Applications
Jeff Whelpley
 
Ruby on Rails and AWS Elastic Beanstalk
Nathalie Steinmetz
 
Alexandre Roman - How Pivotal Cloud Foundry can help you run Spring at scale ...
Codemotion
 
Usable REST APIs. Jrubyconf Edition. Javier Ramirez @ teowaki
javier ramirez
 
Update Smart: Use a Staging Site!
Meagan Hanes
 
PHPNW14 - Getting Started With AWS
benwaine
 
PuppetConf 2016: Site Launch Automation: From Days to Minutes – Kristen Crawf...
Puppet
 
Are you ready to adopt GraphQL?
Siva Prasad Rao Janapati
 
Pain Free Frontend Development
Vanessa Böhner
 
How to build webapps with tools
Pasindu Perera
 
SPA Flask Vue
Vanessa Böhner
 
Automation Best Practices
Sauce Labs
 
Glimpse of Loops Vs Set
Mindfire Solutions
 
Helm your way with Kubernetes
Ana-Maria Mihalceanu
 
HTBYOOFIYRHT RubyConf
Sandy Vanderbleek
 
Immutability: from code to infrastructure, the way to scalability - Breizhca...
Quentin Adam
 
Is Serverless The New Swiss Cheese?
Chase Douglas
 

Similar to Practical REST API (20)

PDF
WordCamp Birmingham 2016 - WP API, What is it good for? Absolutely Everything!
Evan Mullins
 
PDF
WordPress REST API
Anthony Montalbano
 
PDF
WordCamp Wilmington 2017 WP-API Why?
Evan Mullins
 
PDF
2019 WordCamp Orange County - An Introduction to the WordPress REST API
vegasgeek
 
PDF
WordCamp Raleigh 2016 - WP API, What is it good for? Absolutely Everything!
Evan Mullins
 
PPTX
Word press rest api sudarshan shrestha
Sudarshan Shrestha
 
PDF
Building a mini-theme with WordPress REST API
Anthony Montalbano
 
PDF
Introduction to AJAX In WordPress
Caldera Labs
 
PPTX
Beyond the Theme - Using WordPress as an API
David Tufts
 
PPTX
Introduction to Plugin Programming, WordCamp Miami 2011
David Carr
 
PPTX
WordPress Rest API
Brian Layman
 
PPTX
The WordPress REST API as a Springboard for Website Greatness
WP Engine UK
 
PDF
Create a res tful services api in php.
Adeoye Akintola
 
PPTX
Building native mobile apps with word press
Nikhil Vishnu P.V
 
PDF
BuddyPress Groups API
apeatling
 
PPTX
What’s a REST API and why should I care?
topher1kenobe
 
PPTX
A Conversation About the WordPress JSON REST API
HandsOnWP.com
 
PDF
Nate Reist WCGR WP AJAX presentation
natereist
 
PDF
A WordPress workshop at Cefalo
Beroza Paul
 
PPT
Ajax and PHP
John Coggeshall
 
WordCamp Birmingham 2016 - WP API, What is it good for? Absolutely Everything!
Evan Mullins
 
WordPress REST API
Anthony Montalbano
 
WordCamp Wilmington 2017 WP-API Why?
Evan Mullins
 
2019 WordCamp Orange County - An Introduction to the WordPress REST API
vegasgeek
 
WordCamp Raleigh 2016 - WP API, What is it good for? Absolutely Everything!
Evan Mullins
 
Word press rest api sudarshan shrestha
Sudarshan Shrestha
 
Building a mini-theme with WordPress REST API
Anthony Montalbano
 
Introduction to AJAX In WordPress
Caldera Labs
 
Beyond the Theme - Using WordPress as an API
David Tufts
 
Introduction to Plugin Programming, WordCamp Miami 2011
David Carr
 
WordPress Rest API
Brian Layman
 
The WordPress REST API as a Springboard for Website Greatness
WP Engine UK
 
Create a res tful services api in php.
Adeoye Akintola
 
Building native mobile apps with word press
Nikhil Vishnu P.V
 
BuddyPress Groups API
apeatling
 
What’s a REST API and why should I care?
topher1kenobe
 
A Conversation About the WordPress JSON REST API
HandsOnWP.com
 
Nate Reist WCGR WP AJAX presentation
natereist
 
A WordPress workshop at Cefalo
Beroza Paul
 
Ajax and PHP
John Coggeshall
 
Ad

Recently uploaded (20)

PDF
Advancing WebDriver BiDi support in WebKit
Igalia
 
PDF
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Advancing WebDriver BiDi support in WebKit
Igalia
 
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
Ad

Practical REST API