Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // modify api base from "wp-json" to "api"
  2. add_filter('json_url_prefix', 'modify_url_base' );
  3.  
  4. /**
  5. * Modifying Base URL from 'WP-JSON' to 'api'
  6. */
  7. function modify_url_base($prefix) {
  8. return 'api';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement