Allow child themes and plugins to filter the display of the categories in the entry header.
true
Sortie :
@param bool $show_categories Whether to show the categories in header. Default true.
// Modifier la valeur avec le filtre 'twentytwenty_show_categories_in_entry_header'
add_filter('twentytwenty_show_categories_in_entry_header', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre(true) {
// Modifier la valeur
return true;
}
Chargement des actualités...