You appear to be a bot. Output may be restricted
Description
Usage
Jetpack_Sitemap_Buffer_Image::__construct( $item_limit, $byte_limit, $time );
Parameters
- $item_limit
- ( mixed ) required –
- $byte_limit
- ( mixed ) required –
- $time
- ( mixed ) optional default: 1970-01-01 00:00:00 –
Returns
void
Source
File name: jetpack/modules/sitemaps/sitemap-buffer-image.php
Lines:
1 to 14 of 14
public function __construct( $item_limit, $byte_limit, $time = '1970-01-01 00:00:00' ) { parent::__construct( $item_limit, $byte_limit, $time ); $this->doc->appendChild( $this->doc->createComment( "generator='jetpack-" . JETPACK__VERSION . "'" ) ); $this->doc->appendChild( $this->doc->createProcessingInstruction( 'xml-stylesheet', 'type="text/xsl" href="' . $this->finder->construct_sitemap_url( 'image-sitemap.xsl' ) . '"' ) ); }