kollapsminoriteten/wp-content/plugins/jetpack/modules/shortcodes/sitemap.php

31 lines
562 B
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<?php
/**
* Sitemap shortcode.
*
* Usage: [sitemap]
*
2021-04-27 08:32:47 +02:00
* @package automattic/jetpack
2019-11-15 23:26:29 +01:00
*/
add_shortcode( 'sitemap', 'jetpack_sitemap_shortcode' );
/**
* Renders a tree of pages.
*
* @since 4.5.0
*
* @return string
*/
function jetpack_sitemap_shortcode() {
$tree = wp_list_pages(
array(
'title_li' => '<b><a href="/">' . esc_html( get_bloginfo( 'name' ) ) . '</a></b>',
'exclude' => get_option( 'page_on_front' ),
'echo' => false,
)
);
return empty( $tree )
? ''
: '<ul class="jetpack-sitemap-shortcode">' . $tree . '</ul>';
}