I would like to list all posts that have a key of cp_annonceur
with the value professionnel
.
What you are asking for is a meta_query
$args = array(
'meta_key' => 'custom-meta-key',
'meta_query' => array(
array(
'key' => 'cp_annonceur',
'value' => 'professionnel',
'compare' => '=',
)
)
);
$query = new WP_Query($args);
All of the information you need is in the Codex.