반응형
WordPress TinyMCE wp_editor()를 사용할 때 자리 표시자 텍스트를 설정하는 방법
다음에 의해 생성되는 TinyMCE 텍스트 영역의 플레이스홀더 텍스트를 설정할 수 있습니까?wp_editor()
?
http://codex.wordpress.org/Function_Reference/wp_editor
현재 코드는 다음과 같습니다.
$settings = array( 'media_buttons' => false );
wp_editor( $content, $editor_id, $settings );
이렇게 하면 TinyMCE 버튼이나 Quicktags 등의 모든 벨과 휘파람이 포함된 텍스트 영역이 생성되지만 플레이스홀더 텍스트를 설정하는 방법을 알 수 없습니다.표준 텍스트 영역에서는 다음과 같이 수행할 수 있습니다.
<textarea name="content" placeholder="Write something"></textarea>
다음 내용은 HTML5를 제공하지 않습니다."placeholder"
텍스트 영역의 속성을 지정하지만 빈 상자 대신 표시할 텍스트를 제공합니다.
보통 wp_content는 다음과 같이 필요한 부분을 모두 전달하여 사용합니다.
wp_editor( stripslashes($content), $editor_id, $settings );
(변수)$content
데이터베이스 또는 에서 얻을 수 있는 문자열입니다.$_POST
어레이 등)
그래서 난 네가 전화하기 전에wp_content()
함수, 테스트$content
는 비어 있습니다.실제로 비어 있는 경우는, 플레이스 홀더 컨텐츠로 시드 할 수 있습니다.
if( strlen( stripslashes($content)) == 0) $content = "Write something";
wp_editor( stripslashes($content), $editor_id, $settings );
언급URL : https://stackoverflow.com/questions/20341633/how-to-set-placeholder-text-when-using-the-wordpress-tinymce-wp-editor
반응형
'programing' 카테고리의 다른 글
템플릿 없이 Django에서 빈 응답을 보내려면 어떻게 해야 합니까? (0) | 2023.03.11 |
---|---|
jQuery를 사용하여 입력할 때 목록 필터링 (0) | 2023.03.11 |
Spring 및 Jackson의 완전한 데이터 바인딩을 통한 REST (0) | 2023.03.11 |
UNION with WHERE 조항 (0) | 2023.03.11 |
매개 변수 개체에서 쿼리 문자열 빌드 (0) | 2023.03.11 |