• Is there any way we can prevent the TOC from showing up on posts in a certain category? I would like to have TOCs in all my posts except for one group of about 50 posts total. I could add a short code to the 80+ posts that I *do* want to have the contents show up in…but it would be really nice if I could exclude based on category.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try adding something like this to your functions.php or use a plugin such as Code Snippets:

    
    add_action('wp', 'my_disable_toc_plus');
    function my_disable_toc_plus(){
    	global $tic;
    	if ( is_single() && in_category('category slug or ID', get_the_ID()) ){
    		$tic->disable();
    	}
    }
    

    Just replace “category slug or ID” with the appropriate value.

    Thread Starter wpcursus

    (@wpcursus)

    Thank you so much. Clear. I will try that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Exclude TOC from posts by category?’ is closed to new replies.