| Conditions | 2 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function __construct() { |
||
| 17 | |||
| 18 | add_filter( 'wp_sitemaps_taxonomies', function ( $taxonomies ) { |
||
| 19 | $entity_taxonomy = \Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME; |
||
| 20 | if ( array_key_exists( $entity_taxonomy, $taxonomies ) ) { |
||
| 21 | unset( $taxonomies[ $entity_taxonomy ] ); |
||
| 22 | } |
||
| 23 | return $taxonomies; |
||
| 24 | } ); |
||
| 25 | |||
| 26 | } |
||
| 27 | |||
| 29 |