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