How to remove the Powered by GeneratePress in footer
- To remove it, login to your WP website.
- Goto Appearance > Theme File Editor > functions.php.
- Add this line at the bottom of your functions.php file.
add_filter( 'generate_copyright','tu_custom_copyright' );
function tu_custom_copyright() {
?>
<p>© <?php echo date('Y'); ?> YourDomain.com </p>
<?php
}
- Once done, click Update File.