Customize the WordPress admin footer text

This code snippet allows you to customize the text in the footer of the WordPress admin dashboard.

PHP

function custom_admin_footer() {
   echo 'Custom footer text';
}
add_filter('admin_footer_text', 'custom_admin_footer');

Snippet Feedback

Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.

1 Views

Tags

Language

Did it work?

Save Snippet

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.

Embed Snippet

To embed this snippet on your site, copy this html code and paste into your webpage. Learn more
By embedding snippets on your site, you are agreeing to our terms and conditions.