Skip to content

Instantly share code, notes, and snippets.

@barrd
Last active October 17, 2021 06:21
Show Gist options
  • Save barrd/30b2799e564f4c613cd7f931d28e828f to your computer and use it in GitHub Desktop.
Save barrd/30b2799e564f4c613cd7f931d28e828f to your computer and use it in GitHub Desktop.
WordPress - Replace wp-json REST API prefix with api
<?php
// Replace the 'wp-json' REST API prefix with 'api'.
// Make sure to flush the rewrite rules for this to work!
// 🔥 Kudos Phil Kurth
// @see https://www.youtube.com/watch?v=vSUi2Rt36yU
add_filter( 'rest_url_prefix', function () {
return 'api';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment