programing

WordPress TinyMCE wp_editor()를 사용할 때 자리 표시자 텍스트를 설정하는 방법

showcode 2023. 3. 11. 09:39
반응형

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

반응형