Custom Admin Footer Text
Replaces the default 'Thank you for creating with WordPress' footer credit in wp-admin with your site name.
PHPby SnipCraft
php
<?php
add_filter( 'admin_footer_text', 'scseed_custom_admin_footer' );
function scseed_custom_admin_footer( $text ) {
return '<span>Powered by <strong>' . esc_html( get_bloginfo( 'name' ) ) . '</strong></span>';
}#admin#branding#customization#footer