Customizing Dash Board Footer and Embedding clients info
-
Hi,
I have a client who would like to have access to the dash board and I would like to customize the Dash board to read their company name versus word press.
So far I have come to this solution:
if (! function_exists(‘dashboard_footer ‘) ){
function dashboard_footer () {
echo ‘This is my awesome new footer text!
Google‘;
}
}
add_filter(‘admin_footer_text’, ‘dashboard_footer ‘);However, It removed the Footer which is great but now I am stuck with the following error message as a footer on the Dash Board.
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘dashboard_footer ‘ was given in /home/content/01/6653101/html/willafter.com/wp-includes/plugin.php on line 170
Can some-one help? I would like for the Footer to read the clients info. Thank you.
- The topic ‘Customizing Dash Board Footer and Embedding clients info’ is closed to new replies.