File Editor
Directories:
.. (Back)
css
images
img
js
Files:
archiveorg-book.php
archiveorg.php
archives.php
bandcamp.php
brightcove.php
cartodb.php
class.filter-embedded-html-objects.php
codepen.php
crowdsignal.php
dailymotion.php
descript.php
facebook.php
flatio.php
flickr.php
getty.php
gist.php
googleapps.php
googlemaps.php
googleplus.php
gravatar.php
houzz.php
inline-pdfs.php
instagram.php
kickstarter.php
mailchimp.php
medium.php
mixcloud.php
others.php
pinterest.php
presentations.php
quiz.php
recipe.php
scribd.php
sitemap.php
slideshare.php
slideshow.php
smartframe.php
soundcloud.php
spotify.php
ted.php
tweet.php
twitchtv.php
twitter-timeline.php
unavailable.php
untappd-menu.php
upcoming-events.php
ustream.php
videopress.php
vimeo.php
vine.php
vr.php
wordads.php
wufoo.php
youtube.php
Create New File
Create
Edit File: sitemap.php
<?php /** * Sitemap shortcode. * * Usage: [sitemap] * * @package automattic/jetpack */ 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>'; }
Save Changes
Rename File
Rename