Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. //* Please do NOT include the opening php tag, except of course if you're starting with a blank file
  3.  
  4. function ee_seo_xml_sitemap_no_event_type_single($url, $type, $term) {
  5. if (! isset($term->taxonomy)) {
  6. return $url;
  7. }
  8. if ($term->taxonomy == 'espresso_event_type') {
  9. $url = '';
  10. }
  11. return $url;
  12. }
  13. add_filter(
  14. 'wpseo_sitemap_entry',
  15. 'ee_seo_xml_sitemap_no_event_type_single',
  16. 10,
  17. 3
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement