• HOME
  • Diary
  • 正規表現を可視化してくれるサイト

正規表現を可視化してくれるサイト

https://regexper.com/
ほほ〜〜。

なるほど、こういうこともできるのか。

//スマートフォン用の入力エリアの設定
 add_action( 'edit_form_after_editor', 'original_editor' );
function original_editor($post){
	if( $post->post_type == "page" ){
		$content = ''; //あらかじめ表示させておきたい内容
		$editor_id = 'smartphone'; //エディターを区別するために、IDを指定する
		echo '<h2>スマートフォン用コード</h2>';
		wp_editor( $content, $editor_id );
	}
}

$postを引数にいれてしまえば汎用的に色々使えるんだなぁ。