You appear to be a bot. Output may be restricted
Description
Renders a tree of pages.
Usage
$string = jetpack_sitemap_shortcode();
Parameters
Returns
string
Source
File name: jetpack/modules/shortcodes/sitemap.php
Lines:
1 to 12 of 12
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>'; }