Snippets → WordPress
Custom footer text in WordPress dashboard
Change the text that is displayed in the bottom in WordPress dashboard. Make links by using HTML.
function example_footer_admin () {
echo 'This is custom footer text in the bottom of the WordPress dashboard. Thank you for using <a href="http://wordpress.org" target="_blank">WordPress</a>.';
}
add_filter('admin_footer_text', 'example_footer_admin');
into which file do you paste the code?
functions.php