How to Remove the Powered By Text in WordPress Theme Footer
In this article, we are going to cover how to remove the powered by text in WordPress. Or simply say how to change to footer text in WordPress.
There can be two cases, first in case you are using the Themes of AcmeThemes and for ordinary WordPress themes. We are going to cover for both cases.
Case 1 – If you are using themes by Acme Theme
All of our themes have Proudly powered by WordPress | Theme: AcmeBlog by AcmeThemes. The text is written in the footer section. If you want to remove this you have a different approach to this.
In the case of Premium Theme,
If you are using the premium version(paid version), you have options to hide such a section on Appearance > Customize > Footer Options > Enable/Disable Enable Theme Name and Powered by Text. Checked to show and unchecked to hide the powered-by text on the footer.
In the case of Free Themes,
We have a variety of WordPress themes that are free and if you want to hide the Powered by text, you can either customize the theme or need to use the custom CSS codes
1. If you are familiar with WordPress codes, you can customize the theme. Please find the codes inside `acmethemes/hooks/footer.php` file and customize it as you need.
or,
2. Use the below CSS codes on Appearance > Customize > Additional CSS to hide that text.
.site-info { display: none; }
Case 2 – For other themes
There are two ways to change the footer text in WordPress themes. They are either changing from the customizer or from footer.php. These two are the recommended methods to change the footer text in WordPress.
Method 1 – From theme customizer page
This feature does not come in all the themes. But in some themes, there is an option to change the footer text like copyright, date, and date.
Appearance>Customize>Footer>Bottom Bar
Method 2: Editing Footer.php
This is the best option to make changes in the footer. To change from footer.php you need PHP and website knowledge otherwise changes in code might create serious issues. So, you need to be careful while making changes in the core code.
Steps
- Go to Appearance>Theme Editor>Footer. php. You can also go from wp-content/themes/yourtheme/footer.php from Cpanel or FTP. The footer code of the twenty-nineteen looks like the below-
<?php if ( ! empty( $blog_info ) ) : ?> <a class="site-name" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>, <?php endif; ?> <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentynineteen' ) ); ?>" class="imprint"> <?php /* translators: %s: WordPress. */ printf( __( 'Proudly powered by %s.', 'twentynineteen' ), 'WordPress' ); ?> </a>
- Replace the Proudly Powered by with your text.
- Replace the website link with your website link.
Did you find the post very helpful? Please provide your feedback below in the comment section.
If you need any additional help, please use the support forum for more queries.
yap it work but if i click on another page it still showing again. but nt showing on homepage
Can you please share your site URL with us. We will check and provide you some alternative solution as well.
Best Regards !!
It helped. Thanks so much. Thanks again.
Nice to know that your problem is solved. :)
the above css help me to hide it but not to edit it by providing my own informaton and link
How to remove “MEDICAL CIRCLE the modern medical wordpress theme” text from home page picture?
This section is the slider. Please check video docs for more help. https://www.youtube.com/watch?v=yadq3Z3knBs&t=106s
Nice it works on my site, but please can you provide steps on how to insert our own informaton and link. THANKS
This feature is available only in the premium version.
Thank you
This worked, thank you
You truly did more than visitors’ expectations. Thank you for rendering these helpful, trusted, edifying and also cool thoughts on the topic.
I simply wanted to thank you so much again. I am not sure the things that I might have gone through without the type of hints revealed by you regarding that situation.
Most Welcome :-)
Thank you for helpful, trusted, edifying and also cool thoughts on the topic.
How to remove“ word press theme” text from home page picture?
How to edit Copyright??
Dashboard->Appearance->Customize->Footer Options
Thanks for the info
How to remove tag show under post?
Thanks for such a lovely theme. Please guide me how to edit the Contact Information section at the bottom?
not work wptouch mobile theme.
Thank u so much sir. easily got a solution.
Nice TO Help Me
very helpful and so easy to do. i just spent so much time browsing for results instead of coming here since
Thank you it worked for my website
Kindly assist, i am using your Construction field theme and i want to remove on the footer (construction theme by Acme Themes) how do i remove this?
Hi I am using the Click theme and have created a child theme. I literally only want to remove the “Proudly powered by wordpress” link and words. I do not want to remove or hide the rest of the footer. The instructions above don’t seem to have any impact at all. I realise the child theme is taking from the parent theme, but even if I copy the whole of the footer.php file to the child theme and edit it, it still doesn’t remove this link. Can you advise please?
Once you copy whole code it should be removed. May be you should clear the cache.
Thanks for the advice! Thanks to you I deleted the inscription from my blog!
Regards!
Case 1
Remove the parent action, and add your custom action:
add_action( ‘after_setup_theme’, ‘remove_parent_theme_stuff’, 0 );
function remove_parent_theme_stuff()
{
remove_action( ‘corporate_plus_action_footer’, ‘corporate_plus_footer’ );
}
// …
add_action( ‘corporate_plus_action_footer’, ‘corporate_plus_footer_custom’, 5 );
where to find to edit powered by wordpress in readmore theme
hello, i accadently deleted all the code and saved. how can I fix this an get the orignial code from beginning?:(
Very helpful tips and thank you for sharing this knowledge on how to remove “Power by …” text in WordPress.
Thank you for your thoughtful analysis!