앱과 소통을 하는 상황이 아니라면, 모든 컨텐츠가 표시되는 REST API 주소를 차단
// all rest api block add_filter( 'rest_authentication_errors', 'custom_no_rest_api_4_7' ); function custom_no_rest_api_4_7( $access ) { return new WP_Error( 'rest_cannot_access', 'Limited', array( 'status' => 403 ) ); }