Support » Plugin: Simple Page Sidebars » Sidebar Dialog not showing up on new post page

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

    (@bradyvercher)

    Hi chrisgascoignee, this plugin only allows you to create sidebars for pages, however, you can add support for posts by adding the following snippet to your theme’s functions.php file:

    function chrisgascoignee_init() {
        add_post_type_support( 'post', 'simple-page-sidebars' );
    }
    add_action( 'init', 'chrisgascoignee_init' );

    My theme apparently won’t accommodate this plugin (Infinite-Pro). There is also no area for sidebar options below the normal page editor. Would using the above php code and replacing ‘post’ with ‘page’ work?

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar Dialog not showing up on new post page’ is closed to new replies.