Change Admin Panel Footer Text

Change the admin footer text to custom text.
// NAV: Change Admin Panel Footer Text 
add_filter(
	'admin_footer_text',
	function ( $footer_text ) {
		// Edit the line below to customize the footer text.
		$footer_text = 'Powered by WordPress | Get more with: WP Coder';
		
		return $footer_text;
	}
);