Filters the post excerpt used for WXR exports.
$post->post_excerpt
Sortie :
@param string $post_excerpt Excerpt for the current post.
// Modifier la valeur avec le filtre 'the_excerpt_export'
add_filter('the_excerpt_export', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($post->post_excerpt) {
// Modifier la valeur
return $post->post_excerpt;
}
Chargement des actualités...