WordPress で本文に <input /> 書いてその後 <br /> 入れると無視されるのを解決

これで解決

add_filter(
	'the_content',
	function($content){return preg_replace('/(]*>)[\s]*(
]*>)/i', "$1\n$2", $content);}, 1);

php 5.2 なら、こう

add_filter(
	'the_content',
	create_function(
		'$content',
		'return preg_replace("/(]*>)[\s]*(
]*>)/i", "$1\n$2", $content);' ), 1);
フォロー

Get every new post delivered to your Inbox.

現在1,816人フォロワーがいます。