markdown 配置WordPress调试错误日志

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 配置WordPress调试错误日志相关的知识,希望对你有一定的参考价值。

<?php

ini_set('error_log', WP_CONTENT_DIR . '/debug.log');
ini_set('log_errors', 'On');
ini_set('display_errors', 'Off');

error_reporting(E_ERROR | E_PARSE); // Only write errors, not notices, or warnings
//error_reporting(E_ERROR | E_WARNING | E_PARSE); // if you want to also display warnings

if ( ! function_exists('write_log')) {
   function write_log ( $log )  {
      if ( is_array( $log ) || is_object( $log ) ) {
         error_log( print_r( $log, true ) );
      } else {
         error_log( $log );
      }
   }
}
## 1) Configure the wp-config.php 

As follows:

```php
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
```

## 2) Add must use plugin file
Place `error-logging.php` in `wp-content/mu-plugins` folder.

## 3) Write stuff to the log

Like so: 

```php
write_log( "string" );
write_log( $variable_or_array );
```

以上是关于markdown 配置WordPress调试错误日志的主要内容,如果未能解决你的问题,请参考以下文章

php 启用WordPress错误日志调试输出到文件

PHP Wordpress调试配置

Wordpress调试配置

Wordpress模板日主题Rizhuti 3.2虚拟资源素材下载主题网站源码

WordPress 安装 Markdown 插件

wordpress更改过页面固定连接以后为啥新建页面会出现404错误?