Your site name in the admin footer
Replaces “Thank you for creating with WordPress” at the bottom of admin screens with your site’s name, and hides the version number from users who can’t update WordPress.
<?php
add_filter(
'admin_footer_text',
static fn() => sprintf( '<a href="%s">%s</a>', esc_url( home_url( '/' ) ), esc_html( get_bloginfo( 'name' ) ) )
);
add_filter( 'update_footer', static fn( $text ) => current_user_can( 'update_core' ) ? $text : '', 11 );
In these packs
- Admin and login: Your branding on the login page, a tidier admin, and handy extras such as duplicating posts.