# plugins **Repository Path**: gitgreat/plugins ## Basic Information - **Project Name**: plugins - **Description**: WordPress 插件相关的研究 - **Primary Language**: PHP - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-20 - **Last Updated**: 2024-04-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WordPress #### 介绍 WordPress 相关的研究 #### 开启 DE-BUG 模式 // 关闭 WP_DEBUG 模式 //define( 'WP_DEBUG', false); // 开启 WP_DEBUG 模式 define( 'WP_DEBUG', true); // 开启 DEBUG 日志,一定要记得关闭这个日志功能并清理这个日志文件哦,产生的日志文件在: /wp-content/debug.log false define( 'WP_DEBUG_LOG', true); // 显示 errors and warnings define( 'WP_DEBUG_DISPLAY', true); @ini_set( 'display_errors', 'On');