个性化阅读
专注于IT技术分析

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

我正在尝试在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


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

赞(0)
未经允许不得转载:srcmini » 通过管理员在WordPress中编辑页脚内容

评论 抢沙发

评论前必须登录!