wordpress,你如何更改页脚中的信息?

时间:2013-11-09 05:38:09

标签: php html css wordpress

我正在使用二十四主题在wordpress中建立一个网站。我想摆脱“这是一个博客......(搜索栏)......最近的帖子......最近的评论等等。”但唯一对页脚进行编码的页面是footer.php。这是footer.php的编码。我有什么想念的吗?因为我没有看到任何我可以改变的东西,一般不会删除整个页脚。我真的被卡住了,有人可以给我一些清晰度吗?

 <?php
/**
 * The template for displaying the footer.
 *
 * Contains footer content and the closing of the
 * #main and #page div elements.
 *
 * @package WordPress
 * @subpackage Twenty_Thirteen
 * @since Twenty Thirteen 1.0
 */
?>

                </div><!-- #main -->
                <footer id="colophon" class="site-footer" role="contentinfo">
                        <?php get_sidebar( 'main' ); ?>

                        <div class="site-info">
                                <?php do_action( 'twentythirteen_credits' ); ?>
                                <a href="<?php echo esc_url( __( 'http://wordpress.org/',     'twentythirteen' ) );       ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
                        </div><!-- .site-info -->
                </footer><!-- #colophon -->
        </div><!-- #page -->

        <?php wp_footer(); ?>
</body>
</html>

3 个答案:

答案 0 :(得分:2)

页脚中有两个部分/组件。

  1. 显示的模块

  2. 致WordPress。

  3. 如果你想删除侧栏删除代码

     <?php get_sidebar( 'main' ); ?>
    

    如果您要删除信用,请删除以下代码:

    <?php do_action( 'twentythirteen_credits' ); ?>
                                    <a href="<?php echo esc_url( __( 'http://wordpress.org/',     'twentythirteen' ) );       ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
    

    否则,删除它们并获得明确的页脚。

答案 1 :(得分:2)

我认为你想要摆脱的是默认小部件。如果是这种情况,请转到外观&gt;窗口小部件,并将要删除的所有内容拖放到“主窗口小部件区域”下拉列表中。

答案 2 :(得分:1)

“这是一个博客...(搜索栏)...最近的帖子...最近的评论这是来自小部件。如果你不想要这个,你需要删除这些小部件。