
>
Wordpress > wordpress「Custom Field Template」のテキストエリアのPタグを削除
wordpress「Custom Field Template」のテキストエリアのPタグを削除 2015年7月28日
Tag:カスタムフィールド | カスタムフィールドテンプレート
wordpress「Custom Field Template」のテキストエリアで自動で付くpタグのみを削除したい
[詳細]
type = textarea
rows = 4
cols = 40
tinyMCE = true
htmlEditor = true
1.pタグのみを削除したい場合
<?php echo nl2br ( post_custom('詳細') ); ?>
2.自動的に Pタグや改行を出力したい場合
<?php echo wpautop ( post_custom('詳細') ); ?>