POSTS
Posts
Structure of the miniCal Post Table
// Create an post to the database
add_post($post);
// delete a post data. If the second parameter is true then
// the post is deleted permanently, default is false.
delete_post(int $post_id = null, bool $force_delete = false )
// get post form posts table.
get_post( $post );
// edit a post data of posts table
edit_post(array $post = null)Relationships Between Posts
Method
Description
Parameters Description
Return value
Last updated