自定义页脚html标签

时间:2013-05-09 08:38:31

标签: wordpress themes footer

在我的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代码显示为简单文本。 有人知道这个问题吗?

1 个答案:

答案 0 :(得分: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行找到它。

相关问题