0

您好,在我的网站上我有一个由 wordpress 提供支持的博客,我能够制作一个与网站相同的简单主题,但是我无法创建侧边栏,有谁知道如何做到这一点,这是侧边栏中的代码文件

    <?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
    <div id="secondary" class="widget-area" role="complementary">
        <?php dynamic_sidebar( 'sidebar-1' ); ?>
    </div><!-- #secondary -->
<?php endif; ?>

我没有函数文件,只有页眉、索引、页脚和侧边栏,我只想要一个显示最近帖子和按日期浏览的简单侧边栏。欢迎任何帮助谢谢。

哦一个链接到网站jp creative vision

4

2 回答 2

0

This should be easiest way without going to function.php and all, try this one:

create a php file with name of your sidebar e.g TEMP with this name sidebar-TEMP.php (just add prefix 'sidebar-' before your sidebar script)

in that file put all your sidebar code.

and to call put this code:

<?php get_sidebar( 'TEMP' ); // (avoid your prefix here) ?>

thanks.

于 2013-10-03T05:22:00.487 回答
0

我找到了一个朋友,他使用 wordpress 作为他的主要开发方法,他向我展示了如何做我需要的,就像我想的那样缺少函数文件。其他任何人都坚持在这里是一个很好的帖子

Wordpress 添加侧边栏主题

于 2013-10-03T00:43:01.417 回答