Custom Post Type admin screen in Network Admin

It was resolved. This question was specific to some particular project and it’s requirements. And, it was fulfilled at that time with a multisite function for WordPress. What I did: The task was done using a sub-class of WP_Query named WP_Query_Multisite. This class provides us arguments to use for which site to grab the info … Read more

Multi Site Network Admin

Check your htaccess file, which might be causing problems. Mine looks like this (it forces SSL and adds the www part if needed): #force everything to https RewriteEngine On RewriteCond %{HTTP_HOST} (?!^www\.)^(.+)$ [OR] RewriteCond %{HTTPS} off RewriteRule ^ https://www.%1%{REQUEST_URI} [R=301,L] RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] # add a trailing slash to /wp-admin … Read more

What is the new Network Admin section?

Basically they moved Super Admin menus and related pages out of the regular admin and into a new Network Admin screen. and the updates are: Add contextual help for Network screens Add delete support to network themes Add plugin update notifications, plugin install, plugin update to the network admin screen Admin Bar similar to that … Read more

Can’t access admin: “Not Acceptable”

I found this which might solve your problem: <IfModule mod_security.c> SecFilterEngine Off </IfModule> This code goes in a file called .htaccess and must be uploaded in /wp-admin directory. This will disable mod_security which is a module in Apache2 activated by default but it can be problematic. EDIT: @Rarst is right. It is just to see … Read more