Skip to content

Commit

Permalink
Add footer code
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvanpatten committed Nov 6, 2012
1 parent dc5744a commit 256889f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

/**
* function my_admin_footer
* Rewrite the text in the bottom-left footer area
*
* @since 1.0
*/
function my_admin_footer() {
echo 'Built by <a href="#">My Company</a> with <a href="http://wordpress.org">WordPress</a>. &bull; <a href="' . admin_url() . 'freedoms.php">Freedoms</a> &bull; <a href="' . admin_url() . 'credits.php">Credits</a>';
}
add_filter('admin_footer_text', 'my_admin_footer');

0 comments on commit 256889f

Please sign in to comment.