apply_filters( 'the_author', string $display_name )

Filters the display name of the current post’s author.


Parameters

$display_name string
The author's display name.

Top ↑

Source

File: wp-includes/author-template.php. View all references

return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : '' );


Top ↑

Changelog

Changelog
Version Description
2.9.0 Introduced.

Top ↑

User Contributed Notes

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