Removing the “Powered by WordPress” Link? olatechproFebruary 12, 20233 Views Am I allowed to remove the “Powered by WordPress” link in the footer? Post Views: 3 Related postsGet rid of this Strict Standards warningWooCommerce: get_current_screen not working with multi languageCan’t login on WordPressForce HTTPS using .htaccess – stuck in redirect loopWordPress: Ajax not working to insert, query and result dataHow Can I pass an image file to wp_handle_upload?
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!”.) Log in to Reply
Yes, and an easy way to suppress it, without modifying the actual HTML, is to use the following custom CSS: #site-generator { display: none; } Log in to Reply
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]. Log in to Reply
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 Log in to Reply
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 --> Log in to Reply
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'); Log in to Reply
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!”.)
Yes, and an easy way to suppress it, without modifying the actual HTML, is to use the following custom CSS:
The plugin Adminimize has an option for this
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].
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
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:
Delete it, and save the file, or you can replace it with your own link like so:
Here’s how to remove or modify the footer text in the WP admin, put this into
functions.php
of your theme :