Esteem 主题 修改 footer内容

Esteem 主题 修改 footer内容

1. 修改footer内容.

2. 查看footer.php内容

1
2
cd /home/wwwroot/default/fo_bndstone/wp-content/themes/esteem/
cat footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
 * Theme Footer Section for our theme.
 *
 * Displays all of the footer section and closing of the #main div.
 *
 * @package ThemeGrill
 * @subpackage Esteem
 * @since Esteem 1.0
 */
?>
</div><!--#main -->
<?php do_action( 'esteem_before_footer' ); ?>
<footer id="colophon" class="clearfix">
        <?php get_sidebar( 'footer' ); ?>
        <div id="site-generator" class="inner-wrap">
                <?php do_action( 'esteem_footer_copyright' ); ?>
        </div><!-- #site-generator -->
</footer>
<a href="#masthead" id="scroll-up"><i class="icon-angle-up"></i></a>
</div>
<?php wp_footer(); ?>
</body>
</html>

3. 修改内容

1
2
cd /home/wwwroot/default/fo_bndstone/wp-content/themes/esteem/
vi footer.php

找到如下内容

1
2
3
4
5
6
<footer id="colophon" class="clearfix">
        <?php get_sidebar( 'footer' ); ?>
        <div id="site-generator" class="inner-wrap">
                <?php do_action( 'esteem_footer_copyright' ); ?>
        </div><!-- #site-generator -->
</footer>

更改成:

1
2
3
4
<footer id="colophon" class="clearfix">
        <div id="site-generator" class="inner-wrap">
        <div class="copyright">Copyright &copy; 2022 <a href="https://fo.bndstone.com/" title="净土小沙弥" ><span>净土小沙弥</span></a>. 本站内容均来自互联网,如不慎侵害到您的权益,请联系 <a href="mailto:info@bndstone.com" title="info@bndstone.com" ><span>info@bndstone.com</span></a> 我们将尽快删除.</div>   </div><!-- #site-generator -->
</footer>

Leave a Reply

Your email address will not be published. Required fields are marked *