Works great
-
Initially I was disappointing it didn’t work on custom post types, but then bothered to read the instructions.
The developer had bothered to put down exactly how to do this:
function myprefix_init() {
add_post_type_support( ‘{{post_type}}’, ‘simple-page-sidebars’ );
}
add_action( ‘init’, ‘myprefix_init’ );Works a treat! Very flexible. Great job.
- The topic ‘Works great’ is closed to new replies.