Can WordPress filter a query?
To display some items from a post type, I'm using this WordPress query: $posts = get_posts(array( 'post_type' => 'realisations', 'status' => 'publish', 'order' => 'ASC' )); But how can I filter the datas returned by this query depending the infos…