This filter is documented in wp-includes/post-template.php
Ce filtre est documenté dans wp-includes/post-template.php
$template->title, $template->wp_id
Sortie :
add_filter('the_title', 'highlight_featured_posts', 10, 2);
function highlight_featured_posts($title, $post_id) {
if (get_post_meta($post_id, '_featured', true)) {
$title = '⭐ ' . $title . ' ⭐';
}
return $title;
}
Chargement des actualités...