How to remove footer text in wordpress admin dashboard?

  • 0

To add or remove text from the footer section use the filter “admin_footer_text”

function remove_footer_text()
{
echo ‘New footer’;  // or simply leave blank
// Here we can add class or html tags

}

add_filter(‘admin_footer_text’, ‘remove_footer_text’);

To add or remove text from the footer section use the filter “admin_footer_text” function remove_footer_text() { echo ‘New footer’;  // or simply leave blank // Here we can add class or html tags } add_filter(‘admin_footer_text’, ‘remove_footer_text’);

To add or remove text from the footer section use the filter “admin_footer_text” function remove_footer_text() { echo ‘New footer’;  // or simply leave blank // Here we can add class or html tags } add_filter(‘admin_footer_text’, ‘remove_footer_text’);