Skip to content

Instantly share code, notes, and snippets.

@oddevan
Last active November 3, 2020 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oddevan/788b176a03fa655ba15e672432b78109 to your computer and use it in GitHub Desktop.
Save oddevan/788b176a03fa655ba15e672432b78109 to your computer and use it in GitHub Desktop.
<?php
add_action( 'rest_api_init', function () {
register_rest_route( 'oddevan/v1', '/devArtProxy/', array(
'methods' => 'GET',
'callback' => __NAMESPACE__ . '\proxy_deviantart_oembed',
'permission_callback' => __NAMESPACE__ . '\proxy_deviantart_oembed_security',
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment