| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/xsl-sort.php.tar |
dev/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xsl/partials/xsl-sort.php 0000644 00000001176 15114077232 0031251 0 ustar 00 home/xbodynamge <?php
/**
* XSL XSLSort partial for the sitemap.
*
* @since 4.1.5
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable
if ( empty( $data['node'] ) ) {
return;
}
$orderBy = '';
if ( ! empty( $data['parameters']['sitemap-orderby'] ) && in_array( $data['parameters']['sitemap-orderby'], [ 'ascending', 'descending' ], true ) ) {
$orderBy = $data['parameters']['sitemap-orderby'];
}
if ( empty( $orderBy ) ) {
return;
}
?>
<xsl:sort select="<?php echo esc_attr( $data['node'] ); ?>" order="<?php echo esc_attr( $orderBy ) ?>"/>