Q.トップページコンテンツ1の説明文でHTMLタグを使いたいです。
この箇所ではセキュリティの観点より、WordPressのコメント機能と同様にHTMLタグをお使い頂けない仕様のため、HTMLタグは反映されません。
▼変更箇所イメージ
A.下記の方法でカスタマイズしてください。
編集するファイル: admin/theme-options.php
編集する箇所: 2515行目付近
$input['index_content1_desc'] = wp_filter_nohtml_kses( $input['index_content1_desc'] );
↓ wp_filter_nohtml_kses()フィルダーを外す
$input['index_content1_desc'] = $input['index_content1_desc'] ;
編集するファイル: front-page.php
編集する箇所: 49行目付近
<p class="content01-text" style="font-size: <?php echo esc_attr( $index_content1_desc_font_size ); ?>px;"><?php echo nl2br( esc_html( $options['index_content1_desc'] ) ); ?></p>
↓ esc_html()フィルダーを外す
<p class="content01-text" style="font-size: <?php echo esc_attr( $index_content1_desc_font_size ); ?>px;"><?php echo nl2br( $options['index_content1_desc'] ); ?></p>
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!