get_stylesheet_css example



        exit;
    }

    /** * Returns the escaped XSL for all sitemaps, except index. * * @since 5.5.0 */
    public function get_sitemap_stylesheet() {
        $css         = $this->get_stylesheet_css();
        $title       = esc_xml( __( 'XML Sitemap' ) );
        $description = esc_xml( __( 'This XML Sitemap is generated by WordPress to make your content more visible for search engines.' ) );
        $learn_more  = sprintf(
            '<a href="%s">%s</a>',
            esc_url( __( 'https://www.sitemaps.org/' ) ),
            esc_xml( __( 'Learn more about XML sitemaps.' ) )
        );

        $text = sprintf(
            /* translators: %s: Number of URLs. */
            esc_xml( __( 'Number of URLs in this XML Sitemap: %s.' ) ),
            
Home | Imprint | This part of the site doesn't use cookies.