为什么在wp_footer()footer.php本身中调用wp_footer()?

时间:2017-08-16 11:47:23

标签: wordpress wordpress-theming

我想了解WP中的主题创作。根据我的理解,wp_footer()在主页面中包含footer.php。但是我不明白为什么在footer.php中调用wp_footer()就像二十七个页脚一样?

</div><!-- #content -->

        <footer id="colophon" class="site-footer" role="contentinfo">
            <div class="wrap">
                <?php
                get_template_part( 'template-parts/footer/footer', 'widgets' );

                if ( has_nav_menu( 'social' ) ) : ?>
                    <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentyseventeen' ); ?>">
                        <?php
                            wp_nav_menu( array(
                                'theme_location' => 'social',
                                'menu_class'     => 'social-links-menu',
                                'depth'          => 1,
                                'link_before'    => '<span class="screen-reader-text">',
                                'link_after'     => '</span>' . twentyseventeen_get_svg( array( 'icon' => 'chain' ) ),
                            ) );
                        ?>
                    </nav><!-- .social-navigation -->
                <?php endif;

                get_template_part( 'template-parts/footer/site', 'info' );
                ?>
            </div><!-- .wrap -->
        </footer><!-- #colophon -->
    </div><!-- .site-content-contain -->
</div><!-- #page -->
<?php wp_footer(); Here?>

2 个答案:

答案 0 :(得分:4)

wp_footer()在wordpress中不用于包含页脚,实际上get_footer()就是这样做的。

wp_footer()用于输出数据或执行在关闭body标签之前运行的后台操作。

希望能说清楚!!

答案 1 :(得分:0)

据我所知,footer.php中的wp_footer()用于在前端的结束体标记之前打印脚本或数据。

参考链接:http://www.twoclock.com/wp_footer-wordpress-action-hook/