wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



the_title › WordPress Function

Depuis0.71
Dépréciéen/a
the_title ( $before = '', $after = '', $display = true )
Paramètres: (3)
  • (string) $before Optional. Markup to prepend to the title. Default empty.
    Requis: Non
    Défaut: (vide)
  • (string) $after Optional. Markup to append to the title. Default empty.
    Requis: Non
    Défaut: (vide)
  • (bool) $display Optional. Whether to echo or return the title. Default true for echo.
    Requis: Non
    Défaut: true
Retourne:
  • (void|string) Void if `$display` argument is true or the title is empty, current post title if `$display` is false.
Défini(e) dans:
Codex:

Displays or retrieves the current post title with optional markup.



Source

function the_title( $before = '', $after = '', $display = true ) {
	$title = get_the_title();

	if ( strlen( $title ) === 0 ) {
		return;
	}

	$title = $before . $title . $after;

	if ( $display ) {
		echo $title;
	} else {
		return $title;
	}
}