How to remove “powered by generatepress” footer credit

Here is How to remove “powered by generatepress” footer credit. Just copy the code below and add it to your WordPress theme functions. Don’t forget to edit it and add your website name.

add_filter( 'generate_copyright','tu_custom_copyright' );
 function tu_custom_copyright() {
     ?>
    © 2023 Keith Rainz
     <?php
 }
coding