通过管理员在wordpress中编辑页脚的内容

时间:2014-07-05 05:32:23

标签: php wordpress wordpress-theming footer

我正在尝试在wordpress主题中更改我的页脚的内容。内容似乎不是来自footer.php文件。我需要更改页脚中的联系信息。有没有人知道如何使用wp-admin做到这一点?这就是我的footer.php现在在我当前主题中的样子:

<?php 
/**
 * Your Inspiration Themes
 * 
 * In this files there is a collection of a functions useful for the core
 * of the framework.   
 * 
 * @package WordPress
 * @subpackage Your Inspiration Themes
 * @author Your Inspiration Themes Team <info@yithemes.com>
 *
 * This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.gnu.org/licenses/gpl-3.0.txt
 */
?>                         

            <?php
            /**
             * @see yit_footer
             */
            do_action( 'yit_footer') ?>

        </div>
        <!-- END WRAPPER -->
        <?php do_action( 'yit_after_wrapper' ) ?>        

    </div>
    <!-- END BG SHADOW -->

    <?php wp_footer() ?> 

</body>
<!-- END BODY -->
</html>

1 个答案:

答案 0 :(得分:0)

请打开 function.php 或任何具有主题功能的文件,并找到wp_footer()来更改页脚内容。