0

我在此页面上收到此错误:http: //3a8.c8c.myftpupload.com/category/portfolio/

这是错误:警告:第 251 行 /home/content/p3nexnas05_data01/98/2124598/html/wp-content/plugins/genesis-grid-loop/plugin.php 中除以零

该页面以我想要的方式显示,但警告出现在页面底部。

警告中提到的插件的第 251 行如下所示:

$max = ceil ( ( $wp_query->found_posts - $grid_args['features_on_front'] - $grid_args['teasers_on_front'] ) / ( $grid_args['features_inside'] + $grid_args['teasers_inside'] ) ) + 1;
    $wp_query->max_num_pages = $max;

我将主题设置为显示 12 个帖子。我正在使用 Genesis Studiopress Modern Portfolio Pro 子主题。

谁能帮我?我在这里与插件开发人员一起提交了一份支持说明:http ://wordpress.org/support/plugin/genesis-grid-loop 但还没有听到任何消息。感谢你的帮助!谢谢!

4

1 回答 1

0

警告消息只是说( $grid_args['features_inside'] + $grid_args['teasers_inside'] )您的部分代码作为zeroin 值返回

所以 ANYTHING / 0 会导致问题是 wordpress 警告您的内容。

do not want to touch the code如果您随后尝试更改teasers_insidefeatures_inside发布金额(无论这在您的后端意味着什么)并增加它,作为解决此问题的方法

如果你想触摸代码部分

将此代码添加到 wp-settings.php 文件中disable wordpress warning message outputs

//Add define('WP_DEBUG',true);
if (defined('WP_DEBUG') and WP_DEBUG == true){
     error_reporting(E_ALL);
} else {
     error_reporting(0);
}
于 2014-06-20T18:53:32.557 回答