words | WordPress Admin Footer Modification

Thank you for creating with WordPress

Wordpress Admin Footer Modification

Indeed. It has it's detractors, but I like it.

One nice little touch

Another neat little amend we can make to a WordPress site is to change the "Thank you for creating with WordPress" copy at the bottom of the admin screen to something more personal to the project.

Place this code snippet inside functions.php

// Admin footer modification
function modify_footer_admin ()
{
    echo '<a href="mailto:hello@sorenfife.co.uk" title="Send email to Soren">Email Developer</a>';
}
add_filter('admin_footer_text', 'modify_footer_admin');

We can echo what ever we like; a link can be given a class ready for styling, for example.

Be sensible :)

Any more little touches?

Uh-huh!