Remove Hardcode * Powered by WordPress
-
Hi Guys,
I am in the Spacious: Footer (footer.php) files and Copyright ? 2015 Mysite. Powered by WordPress. Theme: Spacious by ThemeGrill. is hardcoded in the file. How do I remove the Powered by WordPress. Theme: Spacious by ThemeGrill only? Here is how it looks.
I would like for it to just show:
Copyright ? 2015 Mysite
<?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 ‘Remove Hardcode * Powered by WordPress’ is closed to new replies.