PHP code example of stephenharris / wp-query-builder
1. Go to this page and download the library: Download stephenharris/wp-query-builder library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stephenharris / wp-query-builder example snippets
global $wpdb;
$qb = new WPQueryBuilder\Query($wpdb);
global $wpdb;
$qb = new YourPluginNameSpace\WPQueryBuilder\Query($wpdb);
$qb->select()->from("wp_users")->get();
//SELECT * FROM wp_users;
$qb->select()->from("wp_users")->where("user_email", "=", "[email protected]")->first();
//SELECT * FROM wp_users WHERE user_email = '[email protected]' LIMIT 1;
$qb->select()
->from("wp_posts")
->where("post_status", "=", "publish")
->andWhere("post_date", ">=", "2018-05-31 10:00:00")
->get();
//SELECT * FROM wp_posts WHERE post_status='publish' AND post_date >= "2018-05-31 10:00:00";
$qb->select()->from("wp_users")->whereIn("ID", [1, 2, 3])->get();
//SELECT * FROM wp_users WHERE ID IN (1, 2, 3);
$qb->select()->from("wp_users")->whereIn("ID", [1, 2, 3])->get();
//SELECT * FROM wp_users WHERE ID IN (1, 2, 3);
$qb->select()->from("wp_posts")->whereBetween("post_date", '2018-05-01 00:00:00', '2018-05-31 23:59:59')->get();
//SELECT * FROM wp_posts BETWEEN '2018-05-01 00:00:00' AND '2018-05-31 23:59:59';
$qb->select()->from("wp_posts")->search("post_title", "foo")->get();
//SELECT * FROM wp_posts WHERE post_title='%foo%';
$qb->select()->from("wp_posts")->search(["post_title", "post_content", "post_excerpt"], "foo")->get();
//SELECT * FROM wp_posts WHERE post_title='%foo%' OR post_content='%foo%' OR post_excerpt='%foo%';
$privateAndAuthor = new WPQueryBuilder\CompositeWhereClause();
$privateAndAuthor->andWhere(new WPQueryBuilder\BasicWhereClause('post_status', '==', 'private'))
$privateAndAuthor->andWhere(new WPQueryBuilder\BasicWhereClause('post_author', '==', 1));
$qb->select()
->from("wp_posts")
->where($privateAndAuthor)
->orWhere("post_status", '=', "publish")
->get();
//SELECT * FROM wp_posts WHERE (post_status = 'private' AND post_author = 1) OR post_status = 'publish';
$qb->table("wp_posts")
->insert(
"post_title" => "My Post Title",
"post_content" => "My post content...",
"post_status" => "publish",
);
// INSERT INTO wp_posts (post_title, post_content, post_status) VALUES ('My Post Title', 'My post content...', 'publish');
$qb->table("wp_posts")
->where("ID", "=", 123)
->delete();
// DELETE FROM wp_posts WHERE ID='123';
try {
$qb->set([
'ID' => 5,
'post_title' => 'Updating a post'
])
->where('ID', '=', 3)
->update();
} catch (\LogicException $e) {
// There is an error in your code
} catch (\WPQueryBuilder\QueryException $e) {
// This could be data conflict
}
$query->select(['wp_posts.*', 'u.user_nicename'])
->('wp_posts')
->leftJoin('wp_users as u', 'wp_posts.post_author', '=', 'u.ID');
// SELECT wp_posts.*, u.user_nicename FROM wp_posts LEFT JOIN wp_users as u ON wp_posts.post_author = u.ID;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.