How to change Powered by WordPress?
-
I’m trying to get rid off Powered by WordPress on my website. I was browsing about it, most of people said go to Appearance > Editor > Footer.php and delete this line `<?php do_action( ‘simplecatch_credits’ ); ?>
but the problem is, I don’t see that on my footer.php
I’m using estelle theme from bluchicthis’s what in my footer.php, what i have to delete to get rid off Powered by WordPress
</section><!– .container –>
<footer class=”footer” itemscope itemtype=”https://schema.org/WPFooter”>
<?php if( is_active_sidebar( ‘footer-widget-1’ ) ) : ?>
<section class=”footer-inner” role=”complementary”>
<section class=”split-columns”>
<article class=”col1″><?php dynamic_sidebar( ‘footer-widget-1’ ); ?></article>
<article class=”col2″><?php dynamic_sidebar( ‘footer-widget-2’ ); ?></article>
<article class=”col3″><?php dynamic_sidebar( ‘footer-widget-3’ ); ?></article>
</section>
</section><!– .footer-inner –>
<?php endif; ?><p class=”footer-copy” role=”contentinfo”>
<?php if( get_option( ‘estelle_footer_credit’ ) == true ) { echo stripslashes( get_option( ‘estelle_footer_credit’ ) ); } else { ?>© <?php _e( ‘Copyright’, ‘estelle’ ); ?> ” itemtype=”copyrightHolder”><?php bloginfo( ‘name’ ); ?> <span itemtype=”copyrightYear” content=”<?php echo date( ‘Y’ ); ?>”><?php echo date( ‘Y’ ); ?></span>. <?php _e( ‘Powered by’, ‘estelle’ ); ?> “>WordPress.<?php } ?>
</p></footer><!– .footer –>
</section><!– .wrap –>
<?php wp_footer(); ?>
</body>
</html>
- The topic ‘How to change Powered by WordPress?’ is closed to new replies.