apply_filters( 'admin_footer_text', string $text )

Filters the “Thank you” text displayed in the admin footer.


Parameters

$text string
The content that will be printed.

Top ↑

Source

File: wp-admin/admin-footer.php. View all references

echo apply_filters( 'admin_footer_text', '<span id="footer-thankyou">' . $text . '</span>' );

Top ↑

Changelog

Changelog
Version Description
2.8.0 Introduced.

Top ↑

User Contributed Notes

  1. Skip to note 1 content
    Contributed by Sajjad Hussain

    This example displays a simple text on your admin area at the bottom:

    function wpdocs_custom_admin_footer_text() {
        return 'My footer custom text';
    }
    add_filter( 'admin_footer_text', 'wpdocs_custom_admin_footer_text' );

    Edited by @audrasjb – 2021/11/20

You must log in before being able to contribute a note or feedback.