admin_footer_text filter-hook . WP 2.8.0
Filters the "Thank you" text displayed in the admin footer.
Usage
add_filter( 'admin_footer_text', 'filter_function_name_6518' ); function filter_function_name_6518( $text ){ // filter... return $text; }
- $text(string)
- The content that will be printed.
Changelog
Since 2.8.0 | Introduced. |
Where the hook is called
In file: /wp-admin/admin-footer.php
admin_footer_text
wp-admin/admin-footer.php 48
echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );