6
WordPress에서 404를 강제 실행하는 방법
조건에 따라 일부 게시물에 404를 적용해야합니다. 나는 그것을 올바르게 수행했는지 알지 못했지만 그것을 관리하고 404.php템플릿을 예상대로로드하고 있습니다. 내 코드 : function rr_404_my_event() { global $post; if ( is_singular( 'event' ) && !rr_event_should_be_available( $post->ID ) ) { include( get_query_template( '404' ) ); exit; # so that the normal page isn't loaded …