apply_filters( ‘admin_footer_text’, string $text )

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

Parameters

$textstring
The content that will be printed.

Source

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

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

  1. Skip to note 2 content

    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.