the_archive_title() WordPress Function
The the_archive_title() function displays the title of the current archive.
the_archive_title( string $before = '', string $after = '' ) #
Display the archive title based on the queried object.
Description
See also
Parameters
- $before
(string)(Optional) Content to prepend to the title.
Default value: ''
- $after
(string)(Optional) Content to append to the title.
Default value: ''
Source
File: wp-includes/general-template.php
function the_archive_title( $before = '', $after = '' ) { $title = get_the_archive_title(); if ( ! empty( $title ) ) { echo $before . $title . $after; } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |