如何将图像添加到标题的末尾?

时间:2013-02-14 00:25:44

标签: image wordpress widget

我有一个wordpress网站,我需要在每个标题的末尾添加一个图像。问题是这些是小部件,所有文本都被wordpress中的小部件所取代。有没有办法我可以将图像硬编码到标题的末尾,这样它就不会被删除?

<div class="grid_4 widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 1') ) : ?>
<h2 class="beeh2">Widgetized Area 1</h2>
<p>Go to Appearance - Widgets section to overwrite this section. Use any widgets that fits you best. This is called <strong>Bottom Left</strong>.</p>
<?php endif; ?> 
<div class="clear"></div>
</div>

<div class="grid_4 widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 2') ) : ?>
<h2 class="beeh2">Widgetized Area 2</h2>
<p>Go to Appearance - Widgets section to overwrite this section. Use any widgets that fits you best. This is called <strong>Bottom Middle</strong>.</p>
<?php endif; ?> 
<div class="clear"></div>

我还注意到,当我查看网站时,我创建的h2课程也不存在。这似乎也被覆盖了。

1 个答案:

答案 0 :(得分:0)

在你的functions.php(或其中包含的文件)中你应该看到&#34; register_sidebar&#34;。页脚1和页脚2是自定义侧栏,可能会覆盖您在窗口小部件中放置的代码。寻找类似下面代码的东西。

register_sidebar( array(
    'name'          => 'Footer 1',
    'id'            => 'footer-1',
    'before_widget' => '',
    'after_widget'  => '',
    'before_title'  => '',
    'after_title'   => '',
) );

&#39; before_title&#39;和&#39; after_title可能包含你的h2。使用html,您可以在&#39; after_title&#39;。

中添加图片

希望有所帮助!