This filter is documented in wp-includes/post-template.php
Ce filtre est documenté dans wp-includes/post-template.php
$post->post_content
Sortie :
add_filter('the_content', 'add_post_metadata', 9);
function add_post_metadata($content) {
if (!is_singular('post') || !in_the_loop()) return $content;
$meta = '';
return $meta . $content;
}
Chargement des actualités...