Removing powered by wordpress
-
Hey!
i have never edited code in the backend of wordpress. with that being said i would greatly appreciate the help. im trying to get rid of the whole powerered by synapse and wordpress thing on my new site https://loanoar.com
this is the code in the footer.php editor
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package synapse
*/
?></div><!-- #content -->
<?php get_sidebar('footer'); ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info container">
<?php printf( __( 'Powered by %1$s.', 'synapse' ), 'Synapse Theme' ); ?>
<span class="sep"></span>
<?php echo ( get_theme_mod('synapse_footer_text') == '' ) ? ('© '.date('Y').' '.get_bloginfo('name').__('. All Rights Reserved. ','synapse')) : esc_html( get_theme_mod('synapse_footer_text') ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon --></div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
can you please let me know which line(s) of code to remove. thank you
- The topic ‘Removing powered by wordpress’ is closed to new replies.