文件操作 - functions.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/rokpaw/public_html/wp-content/plugins/popups-for-divi/includes/functions.php
编辑文件内容
<?php /** * Library functions aid in code reusability and contain the actual business * logic of our plugin. They break down the plugin functionality into logical * units. * * @package PopupsForDivi */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; /** * Loads the shared.php library when no other divimode plugin provides the * required functions. * * @since 3.0.0 */ function pfd_load_library() { if ( ! defined( 'DM_DASH_PATH' ) ) { require_once __DIR__ . '/shared.php'; } dm_admin_notice_schedule_cron( DIVI_POPUP_INST, DIVI_POPUP_STORE ); } /** * Loads the plugins textdomain files. * * @since 3.0.0 */ function pfd_translate_plugin() { // Translate the plugin. load_plugin_textdomain( 'popups-for-divi', false, dirname( DIVI_POPUP_PLUGIN ) . '/languages/' ); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件