diff options
Diffstat (limited to 'plugins/jetpack/modules/sitemaps/sitemap-xsl.php')
-rw-r--r-- | plugins/jetpack/modules/sitemaps/sitemap-xsl.php | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/plugins/jetpack/modules/sitemaps/sitemap-xsl.php b/plugins/jetpack/modules/sitemaps/sitemap-xsl.php index 906f11fb..eceb38ca 100644 --- a/plugins/jetpack/modules/sitemaps/sitemap-xsl.php +++ b/plugins/jetpack/modules/sitemaps/sitemap-xsl.php @@ -90,8 +90,36 @@ $xsl = '<?xml version="1.0" encoding="UTF-8"?> <body>
<div id="description">
<h1>' . esc_html( ent2ncr( __( 'XML Sitemap', 'jetpack' ) ) ) . '</h1>
- <p>' . wp_kses( sprintf( ent2ncr( __( 'This is an XML Sitemap generated by <a href="%s" target="_blank">Jetpack</a>, meant to be consumed by search engines like <a href="%s" target="_blank">Google</a> or <a href="%s" target="_blank">Bing</a>.', 'jetpack' ), 'http://jetpack.com/', 'https://www.google.com', 'https://www.bing.com/' ), array( 'a' => array( 'href' => true, 'title' => true ) ) ) ) . '</p>
- <p>' . wp_kses( sprintf( ent2ncr( __( 'You can find more information on XML sitemaps at <a href="%s" target="_blank">sitemaps.org</a>', 'jetpack' ), 'http://sitemaps.org' ), array( 'a' => array( 'href' => true, 'title' => true ) ) ) ) . '</p>
+ <p>' . wp_kses( + ent2ncr( + sprintf( + __( 'This is an XML Sitemap generated by <a href="%s" target="_blank">Jetpack</a>, meant to be consumed by search engines like <a href="%s" target="_blank">Google</a> or <a href="%s" target="_blank">Bing</a>.', 'jetpack' ), + 'http://jetpack.com/', + 'https://www.google.com', + 'https://www.bing.com/' + ) + ), + array( + 'a' => array( + 'href' => true, + 'title' => true + ) + ) + ) . '</p> + <p>' . wp_kses( + ent2ncr( + sprintf( + __( 'You can find more information on XML sitemaps at <a href="%s" target="_blank">sitemaps.org</a>', 'jetpack' ), + 'http://sitemaps.org' + ) + ), + array( + 'a' => array( + 'href' => true, + 'title' => true + ) + ) + ) . '</p> </div>
<div id="content">
<table>
|