Edit Footer text
-
Hello,
I’m switching to the theme Edge by themefreesia and wanted to edit the footer text. I’ve created a child theme and copied the footer.php file but I can’t figure out which part of the file needs to be edited. Is it any of this? would really appreciate some help! Thank you.<div class=”site-info” <?php if($edge_settings[‘edge-img-upload-footer-image’] !=”){?>style=”background-image:url(‘<?php echo esc_url($edge_settings[‘edge-img-upload-footer-image’]); ?>’);” <?php } ?>>
<div class=”container”>
<?php
if($edge_settings[‘edge_buttom_social_icons’] == 0):
do_action(‘social_links’);
endif;
do_action(‘edge_footer_menu’);
do_action(‘edge_sitegenerator_footer’); ?>
<div style=”clear:both;”></div>
</div> <!– end .container –>
</div> <!– end .site-info –>
<?php
$disable_scroll = $edge_settings[‘edge_scroll’];
if($disable_scroll == 0):?>
<div class=”go-to-top”>” href=”#masthead”><i class=”fa fa-angle-double-up”></i></div> <!– end .go-to-top –>
<?php endif; ?>
</footer> <!– end #colophon –>
</div> <!– end #page –>
<?php wp_footer(); ?>
-
what text do you want to edit in the footer?
some of it might be generated via this line in the code:
do_action(‘edge_sitegenerator_footer’);the related code is to be found in /inc/footer-details.php of your theme…
instead of editing theme files directly, it is recommended to create a child theme to work with; https://codex.wordpress.org/Child_Themes
as your problem is theme specific, please considcer to ask the question in the theme’s forum at https://wordpress.org/support/theme/edge
The topic ‘Edit Footer text’ is closed to new replies.