In this quick video tutorial, I will show you how to edit the footer copyright text in the free version of GeneratePress theme.
You can add the below code to your functions.php or via CodeSnippets plugin.
Watch the below video to learn how to use the below code snippet to customize the footer copyright text.
Copyright PHP Code
add_filter( 'generate_copyright','wpframer_gp_custom_copyright' );
if (!function_exists('wpframer_gp_custom_copyright')) {
function wpframer_gp_custom_copyright() {
$year = date("Y");
?>
© <?php echo $year ?> WordPress Site Development• All Rights Reserved!
<?php
}
}