Skip to content

Early-bird lifetime licence: $199 once, for the first 200 buyers only. See the offer

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.

  • Type PHP
  • Runs Everywhere (runs as WordPress loads)
  • Tested with WordPress 7.1
PHP
<?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.

Move your snippets over this afternoon.

Importing changes nothing until you switch over, and your old shortcodes keep working.