Am I allowed to remove the “Powered by WordPress” link in the footer?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Yes WordPress is licensed using the GPL v2 license so you are “free” to do whatever you want to with it (“free” as in “free speech”, not “free” as in “free beer!”.)
Method 2
Yes, and an easy way to suppress it, without modifying the actual HTML, is to use the following custom CSS:
#site-generator {
display: none;
}
Method 3
The plugin Adminimize has an option for this
Method 4
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].
Method 5
Yes WordPress is licensed using the GPL v2 license so you are “free” to do whatever you want to with it. The plugin Adminimize has an option for this
Method 6
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' ) ); ?>" rel="nofollow noreferrer noopener" 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( '/' ); ?>" rel="nofollow noreferrer noopener" title="<?php bloginfo( 'name' ); ?>" rel="home'><?php bloginfo( 'name' ); ?></a>
</div><!-- #footer-links -->
Method 7
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" rel="nofollow noreferrer noopener" target="_blank">My company</a>';
}
add_filter('admin_footer_text', 'modify_admin_footer');
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0