Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Brady Vercher

    (@bradyvercher)

    Hi satrya,

    I’ve used it in a multisite setup without issue. It doesn’t work with CPTs by default, but you can use a short snippet to add support to other post types:

    function customprefix_init() {
    	add_post_type_support( '{{post_type}}', 'simple-page-sidebars' );
    }
    add_action( 'init', 'customprefix_init' );

    – Brady

    Thread Starter satrya

    (@satrya)

    Ok Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Does it works with multisite?’ is closed to new replies.