Viewing 2 replies - 1 through 2 (of 2 total)
  • +1. Exact same issue.

    Problem was resolved for me, but I was using custom post types. For others using cpt’s, be sure to add support this way in functions.php:

    add_action('init', 'my_custom_init');
    function my_custom_init() {
        add_post_type_support( 'my-cpt', 'front-end-editor' );
    }

    Replace my-cpt with the slug of your custom post type.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘404 Page for subsites in WP Multisite’ is closed to new replies.