Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wp-seopress/246738c7c9896e4b99e1dedd3d65675f to your computer and use it in GitHub Desktop.

Select an option

Save wp-seopress/246738c7c9896e4b99e1dedd3d65675f to your computer and use it in GitHub Desktop.
Filter whether SEOPress abilities are exposed over the REST API
add_filter( 'seopress_abilities_api_rest_enabled', 'sp_abilities_api_rest_enabled', 10, 1 );
function sp_abilities_api_rest_enabled( $enabled ) {
// Expose the SEOPress abilities over REST only on staging.
if ( 'staging' === wp_get_environment_type() ) {
return true;
}
return $enabled;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment