Can I list all files uploaded by users in Network sites? In Multisite each user can manage their files with their own blog but the Super admin can’t monitor all the uploaded files…how can i do that?
Leave a Reply
You must be logged in to post a comment.
You have to run through each blog and fetch the recent attachments with:
Dashboard widgets are registered on
wp_network_dashboard_setup
in multi-site andwp_dashboard_setup
in single-site.Make sure to add the following line to the plugin header to get the plugin network enabled:
Then you can get a table like this:
(from my local dev site, yes, it looks a little bit strange)
Sample plugin, very raw!
WordPress 3.7 introduced wp_get_sites() which will return an array of sites in a WordPress Multisite network. This can replace get_blog_ids().