Created
March 3, 2017 13:22
-
-
Save cheh/424a7ba485496ba524fd57ff5ee5c0c6 to your computer and use it in GitHub Desktop.
Cherry5: Cherry Sidebars on Custom Post Types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'cherry_sidebar_post_type', 'my_prefix_add_custom_sidebars_support' ); | |
function my_prefix_add_custom_sidebars_support( $post_types ) { | |
$post_types[] = 'my-post-type-name-slug'; // tm-property | |
return $post_types; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment