[ Root System Explorer ]
Location:
Root
/
home
/
svaxkys
/
www
/
AcmaCulot
/
wp-content
/
plugins
/
all-in-one-seo-pack
/
app
/
Common
/
Sitemap
/
Html
+ Folder
+ File
Upload
Editing: Shortcode.php
<?php namespace AIOSEO\Plugin\Common\Sitemap\Html; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Handles the HTML sitemap shortcode. * * @since 4.1.3 */ class Shortcode { /** * Class constructor. * * @since 4.1.3 */ public function __construct() { add_shortcode( 'aioseo_html_sitemap', [ $this, 'render' ] ); } /** * Shortcode callback. * * @since 4.1.3 * * @param array $attributes The shortcode attributes. * @return string|void The HTML sitemap. */ public function render( $attributes ) { $attributes = aioseo()->htmlSitemap->frontend->getAttributes( $attributes ); return aioseo()->htmlSitemap->frontend->output( false, $attributes ); } }
SAVE CHANGES
[ CANCEL ]
Name
Type
Actions
.. (Parent Directory)
📄 Block.php
FILE
Ren
[EDIT]
DEL
📄 CompactArchive.php
FILE
Ren
[EDIT]
DEL
📄 Frontend.php
FILE
Ren
[EDIT]
DEL
📄 Query.php
FILE
Ren
[EDIT]
DEL
📄 Shortcode.php
FILE
Ren
[EDIT]
DEL
📄 Sitemap.php
FILE
Ren
[EDIT]
DEL
📄 Widget.php
FILE
Ren
[EDIT]
DEL