wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



single_cat_title › WordPress Function

Od0.71
Przestarzałyn/a
single_cat_title ( $prefix = '', $display = true )
Parametry: (2)
  • (string) $prefix Optional. What to display before the title.
    Wymagane: Nie
    Domyślny: (puste)
  • (bool) $display Optional. Whether to display or retrieve title. Default true.
    Wymagane: Nie
    Domyślny: true
Powrót:
  • (string|void) Title when retrieving.
Zdefiniowane na:
Codex:

Displays or retrieves page title for category archive.

Useful for category template files for displaying the category page title. The prefix does not automatically place a space between the prefix, so if there should be a space, the parameter value will need to have it at the end.


Źródło

function single_cat_title( $prefix = '', $display = true ) {
	return single_term_title( $prefix, $display );
}