通过仪表板向边栏添加多个图像

时间:2014-07-21 作者:user2531854

我有一个侧边栏,上面有3张硬编码的图片。我想这样做,这样你就可以通过WordPress仪表板更改这些。

最简单的方法是什么?使用插件,自定义帖子类型?

<aside id="sidebar">
    <p>
        <img class="img-sidebar" img src="<?php bloginfo(\'template_directory\'); ?>/img/Sidebar1.png" />
    </p>
    <p>
        <img class="img-sidebar" img src="<?php bloginfo(\'template_directory\'); ?>/img/Sidebar2.png" />
    </p>
    <p>
        <img class="img-sidebar" img src="<?php bloginfo(\'template_directory\'); ?>/img/Sidebar3.png" />
    </p>

1 个回复
SO网友:Arshad Hussain

为此,您应该使用wordpress插件。Multi Image Upload 插件将对您有用。

结束

相关推荐

Images with excerpt function

我有一个很好的摘录功能,可以让我的段落保持得体。顺便说一句,效果很好。 function pietergoosen_custom_wp_trim_excerpt($text) { global $post; $raw_excerpt = $text; if ( \'\' == $text ) { $text = get_the_content(\'\'); $text = strip_shortcodes( $text ); &#x