ControlledChaos
8/8/2016 - 2:47 PM

Modify the WordPress admin footer text.

Modify the WordPress admin footer text.

<?php

function ccd_custom_footer() {
  echo 'Created by <a href="mailto:you@example.com">Your Name</a>.';
}
add_filter( 'admin_footer_text', 'ccd_custom_footer' );

?>

Custom Admin Footer

WordPress Snippet