| Conditions | 3 |
| Paths | 3 |
| Total Lines | 21 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function print_video_sitemap() { |
||
| 34 | global $wp; |
||
| 35 | |||
| 36 | $url = home_url( $wp->request ); |
||
| 37 | |||
| 38 | if ( strpos( $url, 'wl-video-sitemap.xml' ) === false ) { |
||
| 39 | return; |
||
| 40 | } |
||
| 41 | |||
| 42 | header( "Content-type: text/xml" ); |
||
| 43 | |||
| 44 | $xml = $this->sitemap_cache->get( self::XML_CACHE_KEY ); |
||
| 45 | |||
| 46 | if ( ! $xml ) { |
||
| 47 | $xml = $this->get_sitemap_xml(); |
||
| 48 | $this->sitemap_cache->put( self::XML_CACHE_KEY, $xml ); |
||
| 49 | } |
||
| 50 | |||
| 51 | echo $xml; |
||
| 52 | die(); |
||
| 53 | } |
||
| 54 | |||
| 76 | } |