Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
add_filter(
'admin_footer_text',
function ( $footer_text ) {
// Edit the line below to customize the footer text.
$footer_text = 'Powered by WordPress | WordPress Tutorials: WPBeginner';
return $footer_text;
}
);