Dans le thème, il existe un type de publication personnalisé appelé faq
Je veux juste obtenir certains messages par leur nom (PAS par identifiant car aucun identifiant n'existe).
<?php query_posts('post_type=faq') ?>
comment obtenir the_tile()
et the_permalink()
par son nom?
$posts = get_posts(array('name' => 'your-posts-name', 'post_type' => 'faq'));
foreach ($posts as $post) {
$title = get_the_title($post->ID);
$permalink = get_permalink($post->ID);
break; //use this to limit to a single result
}