Code snippet to hide on categories
-
Hey all,
I was trying to disable the ToC on posts in certain categories and couldn’t find an option, but there is a convenient filter available in the plugin.
I’m sure the dev will add this option to the settings panel at some point, but anyone who wants to use PHP can add this snippet to their site now:
function my_disable_luckywp_toc() { if ( in_category('category-slug') || in_category('category-slug') ) { return true; } else { return false; } } add_filter('lwptoc_disable_autoinsert', 'my_disable_luckywp_toc');
Just swap out the “category-slug” parts with the slugs of your categories, and the ToC won’t be output on posts in those categories.
- The topic ‘Code snippet to hide on categories’ is closed to new replies.