Server IP : 66.29.132.124 / Your IP : 3.147.48.226 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/diixadigital.com/wp-content/plugins/jetpack/modules/shortcodes/ |
Upload File : |
<?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>'; }