mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
309 B
Text
9 lines
309 B
Text
add_filter( 'rest_endpoints', function( $endpoints ){
|
|
if ( isset( $endpoints['/wp/v2/users'] ) ) {
|
|
unset( $endpoints['/wp/v2/users'] );
|
|
}
|
|
if ( isset( $endpoints['/wp/v2/users/(?P<id>[\d]+)'] ) ) {
|
|
unset( $endpoints['/wp/v2/users/(?P<id>[\d]+)'] );
|
|
}
|
|
return $endpoints;
|
|
});
|