文件操作 - block-editor.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/jimbrandstatter/public_html/wp-content/themes/Total/inc/widgets/block-editor.php
编辑文件内容
<?php namespace TotalTheme\Widgets; \defined( 'ABSPATH' ) || exit; /** * The Wiget Block Editor Tweaks. */ class Block_Editor { /** * Static-only class. */ private function __construct() {} /** * Disables the block editor. */ public static function disable_block_editor() { // Disables the block editor from managing widgets in the Gutenberg plugin. \add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' ); // Disables the block editor from managing widgets. \add_filter( 'use_widgets_block_editor', '__return_false' ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件