Filter Hook since 2.8.0
admin_footer_text
Filters the text shown in the bottom-left of every admin page
Description
admin_footer_text is a lightweight branding hook — agencies commonly use it to replace WordPress's default footer credit with their own support link.
When it runs
On every wp-admin page, when the admin footer renders.
Signature
apply_filters( 'admin_footer_text', string $text );Parameters
$textstring — Admin footer text.
Examples
Basic
add_filter( 'admin_footer_text', function() {
return 'Managed by Acme Agency — <a href="https://example.com/support">Get support</a>';
} );Replace the default footer credit with an agency support link.
Common Use Cases
- White-label the admin footer for clients
- Add a support/help link
- Show the current plugin/theme version
Common mistakes
- Not escaping/sanitizing HTML if the text comes from a settings field — this renders unescaped in every admin page
Related hooks
FAQ
Can I hide the admin footer text entirely?
Return an empty string from the filter — WordPress will render the footer area with no text.
Source: wp-admin/includes/template.php