I am creating a WordPress network and am looking for a way to pull recent images from the sub blogs, but I am having some trouble doing so.
What is the easiest way to make this happen?
I am creating a WordPress network and am looking for a way to pull recent images from the sub blogs, but I am having some trouble doing so.
What is the easiest way to make this happen?
You must be logged in to post a comment.
Use
switch_to_blog
to switch blog contexts to a specific blog ID. From there on it’s all down toget_posts
of theattachment
type. And switching back to the current context withrestore_current_blog
.Something like this: