I am trying to connect to WordPress using the WPDB because it’s such a beautiful class and also there are configurations that specified in wp-config.php so i won’t need to specify it again.
I going to write a small separated script from main WordPress to run in background that will need to use this WPDB instance.
How can I archive this?
Any help is appreciated.
The best(fastest and safest) way to load only load the core functionality of WordPress is to use the
SHORTINIT
flag like this:For more information about this and see what is loaded, is to check the code in
/wp-settings.php
. There you will find the following section:This means that anything after this won’t be loaded, and it’s quite a lot of things as you can see. The footprint will be much smaller than just loading the
wp-load.php
and still gives you access to all the all the built in functions in WordPress core, unlike including for example/wp-includes/wp-db.php
directly. Many functions in WP core also has dependencies in other files and it can be a mess to figure out exactly what files you need to include to be able do what you want.SHORTINIT
includes the needed dependencies so you don’t have to worry about this.If you know exactly what you need, for example only WPDB, the fastest way is of course to only include the files you need, but
SHORTINIT
provides a safer and more standardised way to load the WP core and the dependencies. WithSHORTINIT
WordPress does not load plugins, most parts of the plugin API, themes, theme functions and most admin and frontend functions. This is where the heavy code is in a typical WordPress install.In most cases I think
SHORTINIT
is worth the small tradeoff in speed/performance compared to including only the files you need and it’s in most cases a huge performance boost compared to a full load.Indeed
SHORTINIT
seems like the best solution: see @Pelmered answer…For reference:
SHORTINIT
was introduced in WordPress 3.0 (June 17, 2010), despite not being mentioned in the release notes, having a look at the code itself provides clear indication of its addition.WordPress actually allows you to use your own DBA (database abstraction layer) just by creating a file called
db.php
and saving it in the root of yourwp-content
directory.I had the problem of needing to access a database via class I wrote, that had nothing todo with WordPress, but I didn’t want to create a whole new DBA just go with this script.
Since the default
WPDB
does not allow you to use the factory pattern, I quickly wrote a few lines to support it, and added it todb.php
…Now when needing to use
wpdb
from elsewhere (in my case a non-WordPress class), you can juse use:from within a method, rather than the horrible
global
.You can use
$wpdb
in new.php
file which is inside of theme folder, by using following code.You should just
require_once('../../../wp-load.php');
And then you all WordPress classes, hooks and everything will be loaded. Now you can start to interact with the database using
global $wpdb;
and the wpdb instance will be started.You just need to include the wp-load.php file into your script.
This should do the trick too:
Following two steps are enough.
any global variables you can use in this page after that. Make sure you give the correct include path of wp-blog-header.php. No need to include several files.
Fast and lightweight way with just a single line is
require(dirname(_FILE__).’/wp-blog-header.php’);
Reason is because WordPress initializes loading the index.php and when you check the index.php , you see :
require(dirname(__FILE__).’/wp-blog-header.php’);
This loads and bootstrap WordPress.
so to use WordPress outside of the WordPress install , simply create a new file and then write :
require(dirname(__FILE__).’/wp-blog-header.php’);
then for a test, write : global $wpdb; var_export($wpdb) .
so now you have access to all WordPress API and the database object $wpdb.
As of June 21st, 2021 this was in their documentation, https://developer.wordpress.org/reference/classes/wpdb/, and it worked seamlessly for me: