• Using WordPress 3.4.1, I recently converted from WordPress Multisite to a Normal WordPress (dumping the subsites in favor of the main site) install by removing the MultiSite code from wp-config.php or simply defining the constants as false.

    define('WP_ALLOW_MULTISITE', false);
    define( 'MULTISITE', false );

    However, when I do this on the main site, the administrators cannot edit posts of custom post types. They can edit posts and pages, but they cannot edit their custom post types. They all take the standard, default capabilities (post), capability types, maps, etc.

    Any help here would be fantastic!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    How did you add the CPTs to the site?

    Is it in your theme or in a plugin or an mu-plugin…?

    Thread Starter Travis Smith

    (@wpsmith)

    Registered them in a core functionality plugin. Simple one file plugin.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Can you share the code on Pastebin?

    I ask because there are a lot of ways to do it with Multisite if you don’t want your CPTs to show on all sites, and sometimes you have to un do that to go back to Single Site.

    My guess is that you still have some Multisite Specific code in there.

    (Personally I have a site-cpt.php file, sitting in /mu-plugins for my single sites)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Convert FROM Multisite, Cannot edit Custom Post Types’ is closed to new replies.