I am working on a multisite blog network where I have to display recent post on my home page, 10 post per page navigation.
I did implement it using wpdb object with one complex sql statement.
- I got blog ids us
get_blog_list
function - looped through each blog id list and generated a one single sql query to get post from all sites
- Used
wpdb->get_result
to get list of posts from all subsites
I have recently started working on PHP and WordPress and am still learning it.
Is use of wpdb
object is the right way in this situation? I have read in many articles which uses WP_Query
object. I don’t know how to use WP_Query
object in this situation?
Help me implement this in right/better way.
You could use your list of blog ids in this way …
Important are switch_to_blog and restore_current_blog. The rest of the code is just there to illustrate the idea.