In this tutorial, we will show you how to disable AMP for All Categories Except One Category, then first you need to create a Custom Plugin and add it below the filter.
Example code:PHP
add_filter('ampforwp_skip_category' ,'prefix_skip_category'); function prefix_skip_category($skip){ $cat_id = get_the_category(); //AMP will only work on sports category if($cat_id[0]->name != 'sports'){ $skip = true; } return $skip; }
You just need to remove the sports from the code and replace it with the name of the category you want to show AMP.
That’s it for this tutorial!
We hope it helped you. If you have any feedback or questions, then please share them in the comments section below.