如何更改Olsen Theme for Wordpress中的页脚?

时间:2017-11-12 17:18:33

标签: php html css wordpress

            </div><!-- /site-content -->

            <?php if ( ! is_page_template( 'template-blank.php') ) : ?>
                <footer id="footer">

                    <?php if ( is_active_sidebar( 'footer-widgets') ) : ?>
                        <?php
                            $attributes = sprintf( 'data-auto="%s" data-speed="%s"',
                                esc_attr( get_theme_mod( 'instagram_auto', 1 ) ),
                                esc_attr( get_theme_mod( 'instagram_speed', 300 ) )
                            );
                        ?>
                        <div class="row">
                            <div class="col-md-12">
                                <div class="footer-widget-area" <?php echo $attributes; ?>>
                                    <?php dynamic_sidebar( 'footer-widgets' ); ?>
                                </div>
                            </div>
                        </div>
                    <?php endif; ?>

                    <div class="site-bar group">
                        <nav class="nav">
                            <?php wp_nav_menu( array(
                                'theme_location' => 'footer_menu',
                                'container'      => '',
                                'menu_id'        => '',
                                'menu_class'     => 'navigation',
                                'depth'          => 1,
                            ) ); ?>
                        </nav>

                        <div class="site-tools">
                            <?php if ( get_theme_mod( 'footer_socials', 1 ) == 1 ) {
                                get_template_part( 'part-social-icons' );
                            } ?>
                        </div><!-- /site-tools -->
                    </div><!-- /site-bar -->
                    <div class="site-logo">
                        <h3>
                            <a href="<?php echo esc_url( home_url() ); ?>">
                                <?php if( get_theme_mod( 'footer_logo', get_template_directory_uri() . '/images/logo.png' ) ): ?>
                                    <img src="<?php echo esc_url( get_theme_mod( 'footer_logo', get_template_directory_uri() . '/images/logo.png' ) ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" />
                                <?php else: ?>
                                    <?php bloginfo( 'name' ); ?>
                                <?php endif; ?>
                            </a>
                        </h3>

                        <?php if ( get_theme_mod( 'footer_tagline', 1 ) == 1 ): ?>
                            <p class="tagline"><?php bloginfo( 'description' ); ?></p>
                        <?php endif; ?>
                    </div><!-- /site-logo -->
                </footer><!-- /footer -->
            <?php endif; ?>
        </div><!-- /col-md-12 -->
    </div><!-- /row -->
</div><!-- /container -->

嗨,我正在试图弄清楚如何在这个主题中自定义页脚。 Olsen Theme

这是footer.php文件中的代码。我在YouTube上看过教程,但教程中显示的主题非常简单,可以自定义页脚。但是有了这个主题,我无法弄清楚在哪里做出改变。任何帮助,将不胜感激。谢谢!

0 个答案:

没有答案