Customizing Footer Text in Spacious Theme
-
Hi,
I’ve been trying to change the deault footer text in the ‘Spacious’ Theme.
This is the default text :-
Copyright © 2015 Get Mobile. Powered by WordPress. Theme: Spacious by ThemeGrill.
I’ve looked in footer.php but I can’t find any reference to it.
Can anyone please help ? (Thanks in advance !)
-
Here is the text of the footer.php template :-
<?php
/**
* Theme Footer Section for our theme.
*
* Displays all of the footer section and closing of the #main div.
*
* @package ThemeGrill
* @subpackage Spacious
* @since Spacious 1.0
*/
?></div><!– .inner-wrap –>
</div><!– #main –>
<?php do_action( ‘spacious_before_footer’ ); ?>
<footer id=”colophon” class=”clearfix”>
<?php get_sidebar( ‘footer’ ); ?>
<div class=”footer-socket-wrapper clearfix”>
<div class=”inner-wrap”>
<div class=”footer-socket-area”>
<?php do_action( ‘spacious_footer_copyright’ ); ?>
<nav class=”small-menu clearfix”>
<?php
if ( has_nav_menu( ‘footer’ ) ) {
wp_nav_menu( array( ‘theme_location’ => ‘footer’,
‘depth’ => -1
) );
}
?>
</nav>
</div>
</div>
</div>
</footer>
</div><!– #page –>
<?php wp_footer(); ?>
</body>
</html>
The topic ‘Customizing Footer Text in Spacious Theme’ is closed to new replies.