试图调试我的开发,但由于调试中缺少输出而遇到很多挫折。日志例如,我在wp config中定义了它。php:
define( \'WP_DEBUG\', true );
define( \'WP_DEBUG_LOG\', true );
define( \'WP_DEBUG_DISPLAY\', false );
ini_set( \'display_errors\', 0 );
我的职能中有这一点。php
add_filter( \'the_content\', \'my_custom_function\' );
function my_custom_function( $content ){
error_log( \'this fired\' ); //never works!
$return $content;
}
我错过了什么?