Removing the “Powered by WordPress” Link?

Am I allowed to remove the “Powered by WordPress” link in the footer?

Related posts

Leave a Reply

7 comments

  1. The other option is to remove it entirely from functions.php. Search in functions.php for “powered” and take out the portion of code reading: . Powered by [wp-link].

  2. Since you didn’t specify a theme , I’ll assume you are using the default theme, now TwentyEleven, or one that is similarly built.

    In the theme’s root directory, you will find the footer.php file. Look for the following html:

    <div id="site-generator">
                <?php do_action( 'twentyeleven_credits' ); ?>
                <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
    </div>
    

    Delete it, and save the file, or you can replace it with your own link like so:

    <div id="footer-links">
        <a href="<?php echo home_url( '/' ); ?>" title="<?php bloginfo( 'name' ); ?>" rel="home'><?php bloginfo( 'name' ); ?></a>
    </div><!-- #footer-links -->
    
  3. Here’s how to remove or modify the footer text in the WP admin, put this into functions.php of your theme :

    function modify_admin_footer () {
      echo 'Developped by <a href="http://www.mycompany.com" target="_blank">My company</a>';
    }
    add_filter('admin_footer_text', 'modify_admin_footer');