{"id":3610,"date":"2017-02-05T15:58:00","date_gmt":"2017-02-05T15:58:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3610"},"modified":"2022-10-17T13:57:15","modified_gmt":"2022-10-17T13:57:15","slug":"add-unique-sidebar-to-your-custom-post-type-2","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/code-snippets\/add-unique-sidebar-to-your-custom-post-type-2\/","title":{"rendered":"Add Unique Sidebar to your Custom Post Type"},"content":{"rendered":"\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add a unique sidebar to your Custom Post Type.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/** ADD Products custom sidebar  ********\/\n\nadd_action('get_header','cd_change_genesis_sidebar');\nfunction cd_change_genesis_sidebar() {\n    if ( is_singular('products') || is_page( array( 42, 54, 6 )) || is_tax( array('products_category', 'products_tag')) || is_post_type_archive('products')) {\n        remove_action( 'genesis_sidebar', 'genesis_do_sidebar' );\n        add_action( 'genesis_sidebar', 'cd_do_sidebar' );\n    }\n}\n\n\/** Function to output products custom sidebar  ********\/\n\nfunction cd_do_sidebar() {\n\tdynamic_sidebar( 'products-single-sidebar' );\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin to add a unique sidebar to your Custom Post Type.<\/p>\n","protected":false},"author":1,"featured_media":3806,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":0,"wds_primary_category":56,"footnotes":""},"categories":[56],"tags":[110,195,83],"class_list":{"0":"post-3610","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-code-snippets","8":"tag-code","9":"tag-custom-post-type","10":"tag-layout","11":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2022\/09\/matrix-source-code-600x600.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3610","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3610"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3610\/revisions"}],"predecessor-version":[{"id":10720,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3610\/revisions\/10720"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3806"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3610"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3610"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3610"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}