0

私の Evolve テーマには、次のテキストでフッターをカスタマイズするセクションがあります。

Available HTML tags and attributes: <b> <i> <a href="" title=""> <blockquote> <del datetime=""> <ins datetime=""> <img src="" alt="" /> <ul> <ol> <li> <code> <em> <strong> <div> <span> <h1> <h2> <h3> <h4> <h5> <h6> <table> <tbody> <tr> <td> <br /> <hr />

それらを使用しようとすると、何も起こらず、html コードが単純なテキストとして表示されます。誰もこの問題を知っていますか?

4

1 に答える 1

0

なぜ footer.php を編集しないのですか?

<?php $footer_content = evl_get_option('evl_footer_content',''); 
 if ($footer_content === false) $footer_content = '';
 echo esc_attr($footer_content);
?>

HTML を にプッシュします$footer_content = 'insert here'

同じバージョンの「Evolve」がある場合は、footer.php の 88 ~ 91 行目にあります。

于 2013-05-09T09:06:23.733 に答える