wp_query_rs 0.4.1

A rust implementation of the classic WP_Query utility to access WordPress posts outside of a WordPress environment.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::WpPost;

#[allow(non_snake_case)]
impl WpPost {
    pub fn ID(mut self, id: u64) -> Self {
        self.ID = id;

        self
    }
}