Advertisement
thesufi

Customize wp dashboard footer text

Aug 18th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function dct_custom_footer() {
  2.     add_filter( 'admin_footer_text', 'dct_footer_text', 11 );
  3. }
  4.  
  5. function dct_footer_text($content) {
  6.     return '<b>Developed by <a href="http://www.thedct.com" target="_blank">DCT IT</a></b>';
  7. }
  8. add_action( 'admin_init', 'dct_custom_footer' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement