文件操作 - class-404page-block-editor.php
返回文件管理
返回主菜单
删除本文件
文件: /home/tecnoht/public_html/lessi--it/wp-content/plugins/404page/inc/class-404page-block-editor.php
编辑文件内容
<?php /** * The 404page block editor plugin class * * @since 9 */ if ( ! defined( 'WPINC' ) ) { die; } /** * The block editor plugin class */ if ( !class_exists( 'PP_404Page_BlockEditor' ) ) { class PP_404Page_BlockEditor extends PPF07_SubClass { /** * Do Init * * @since 9 * @access public */ public function init() { add_action( 'admin_head', array( $this, 'admin_style' ) ); } /** * Add Block Editor Style to Header if currently edited page is a custom 404 error page * * @since 9 * @access public */ public function admin_style() { if ( $this->is_gutenberg_editing() ) { ?> <style type="text/css"> .edit-post-layout__content:before { content: "<?php esc_html_e( 'You are currently editing your custom 404 error page', '404page'); ?>"; background-color: #333; color: #FFF; padding: 8px; font-size: 16px; display: block }; </style> <?php } } /** * Is the 404 page edited in gutenberg editor? * * @since 9 * @access private */ private function is_gutenberg_editing() { // Is the current screen the page edit screen and is a custom 404 error page defined? if ( get_current_screen()->id == 'page' && $this->settings()->get( 'page_id' ) > 0 ) { // Is the block editor active for pages and is the classic editor not loaded? if ( function_exists( 'use_block_editor_for_post_type' ) && use_block_editor_for_post_type( 'page' ) && ! isset( $_GET['classic-editor'] ) ) { global $post; $all404pages = $this->core()->get_all_page_ids(); // Is the currently edited page a custom 404 error page? if ( in_array( $post->ID, $all404pages ) ) { return true; } } } return false; } } } ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件