文件操作 - copyright.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/footer/bottom/copyright.php
编辑文件内容
<?php namespace TotalTheme\Footer\Bottom; \defined( 'ABSPATH' ) || exit; /** * Footer Copyright. */ class Copyright { /** * Return default content. */ public static function get_default_content() { return 'Copyright <a href="[site_url]">[site_name]</a> [current_year] - All Rights Reserved'; } /** * Return copyright content. */ public static function get_content() { $content = \wpex_get_translated_theme_mod( 'footer_copyright_text', self::get_default_content() ); /** * Filters the footer bottom copyright content. * * @param $content */ $content = (string) \apply_filters( 'totaltheme/footer/bottom/copyright/content', $content ); return $content; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件