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 theme which 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;
}