有时我使用下面的代码来规范我的Wordpress网站的外观-删除div周围的一些空白并为:beforeand:after元素赋予0的宽度和高度
*{
font-size: 0;
}
效果很好,但是当我测试有错误define( 'WP_DEBUG', true );的错误时,直到我禁用css样式或检查网站后,错误才会出现。
我的问题-是否可以将错误包装在<p>标签或类似内容中?
当前错误仅显示如下
<br />
<b>Fatal error</b>: Uncaught Error: Call to undefined function file_get_content() in /Users/maksym/htdocs/my-wp-website/wp-content/themes/mytheme/index.php:35
Stack trace:
#0 /Users/maksym/htdocs/my-wp-website/wp-includes/template-loader.php(77): include()
#1 /Users/maksym/htdocs/my-wp-website/wp-blog-header.php(19): require_once('/Users/maksym/h...')
#2 /Users/maksym/htdocs/my-wp-website/index.php(17): require('/Users/maksym/h...')
#3 {main}
thrown in <b>/Users/maksym/htdocs/my-wp-website/wp-content/themes/mytheme/index.php</b> on line <b>35</b><br />
已经尝试使用谷歌搜索,但找不到任何东西
编辑
我设法使其正常工作,我以相反的顺序进行了前置和追加,因此它将以</p>错误开头<p>
下面的工作代码
define( 'WP_DEBUG', true );
ini_set('display_errors', '1');
ini_set('error_prepend_string', '<p>');
ini_set('error_append_string', '</p>');
它也可以在全局php.ini中工作,这正是我想要的。
谢谢04FS和Lajos Arpad,
希望有人会有所帮助