bestsource

Rest API 플러그인 wordpress 기본 경로 사용 안 함

bestsource 2023. 4. 4. 21:51
반응형

Rest API 플러그인 wordpress 기본 경로 사용 안 함

Hello guy's Please me I help me REST API 플러그인 WP를 설치하고 특정 경로와 내가 하지 않는 모든 것을 추가합니다.단, 디폴트루트 exemple : /wp-json/ /wp-json/wp/v2/posts를 비활성화합니다.

Wordpress 4.7에서는 다음과 같습니다(0이 아닌 99로 표기).

remove_action('rest_api_init', 'create_initial_rest_routes', 99);

단, 커스텀콘텐츠 타입 루트도 삭제됩니다.대신 다음을 사용할 수 있습니다.

add_filter('rest_endpoints', function($endpoints) {

    unset( $endpoints['/wp/v2/users'] );
    // etc

    return $endpoints;
});

플러그인에서 이를 사용하여 모든 기본 경로를 제거할 수 있습니다.

remove_action( 'rest_api_init', 'create_initial_rest_routes', 0 );

언급URL : https://stackoverflow.com/questions/37816170/rest-api-plugin-wordpress-disable-default-routes

반응형