esc_js() 함수(Html 내장 JS 필터링)
매개변수
$텍스트
(문자열) (필수) 필터링할 문자열입니다.
기본값: 없음
반환값
(문자열) 필터링된 문자열을 반환합니다.
예
<input type="text" value="<?php echo esc_attr( $instance['input_text'] ); ?>" id="subbox" onfocus="if ( this.value == '<?php echo esc_js( $instance['input_text'] ); ?>') { this.value = ''; }" onblur="if ( this.value == '' ) { this.value = '<?php echo esc_js( $instance['input_text'] ); ?>'; }" name="email" />
더보기
이 기능은 wp-includes/formatting.php에 있습니다
nocache_headers()(브라우저 캐싱 비활성화)
nocache_headers()는 브라우저에 현재 페이지의 캐싱을 비활성화하도록 헤더 정보를 보내는 데 사용됩니다. 일반적으로 오류를 방지하기 위해 Ajax 요청 중에 사용됩니다.
사용방법
nocache_headers();
속성
이 함수에는 속성이 없습니다.
반환값
이 함수에는 반환 값이 없습니다.
예
function Bing_add_ajax(){ nocache_headers(); echo true; die; } add_action( 'template_redirect', 'Bing_add_ajax' );
기타
이 기능은 wp-includes/functions.php에 있습니다