Filters the permalink for a post. Only applies to posts with post_type of 'post'.
$permalink, $post, $leavename
Sortie :
@param string $permalink The post's permalink. @param WP_Post $post The post in question. @param bool $leavename Whether to keep the post name.
// Modifier la valeur avec le filtre 'post_link'
add_filter('post_link', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($permalink) {
// Modifier la valeur
return $permalink;
}
Chargement des actualités...