Advertisement
GochiSiyan

remove amp tag

Apr 7th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. add_filter('the_tags', function ($tag) {
  2. if (function_exists( 'is_amp_endpoint' ) && is_amp_endpoint()) {
  3. return '';
  4. }
  5. return $tag;
  6. }, 99999);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement