我是Wordpress的新手。我收到了这个错误:
注意:在/mnt/stor10-wc1-ord1/825767/iucn.oceanic.net.fj/web/content/wp-content/plugins/super-socializer/super_socializer.php中尝试获取非对象的属性在第486行
这是由我正在使用“Super Socializer”的插件引起的。它适用于其他页面,但我创建了一个自定义的帖子类型,并有3个类别。链接将其带到类别模板。例如:链接显示帖子与类别A,链接B显示类别B等的帖子,
我的类别临时代码是这样的:
<?php
$args = array(
'posts_per_page' => 10,
'post_status' => 'publish',
'post_type' => 'oursuppliers',
'cat' => 35
);
query_posts($args);
?>
<?php
if ( have_posts() ): while ( have_posts() ) : the_post();
$post_title = get_the_title();
$post_author = $post->post_author;
$post_date = $post->post_date;
$link = get_field("resource-uploader");
$post_thumbnail_id = get_post_thumbnail_id( $id );
$thumbnail = wp_get_attachment_image_src( $post_thumbnail_id, "thumbnail");
$thumbnail = $thumbnail[0];
if( empty($thumbnail) ){
$thumbnail = get_template_directory_uri() . "/resources/images/default-150x150.jpg";
}
?>
<div >
<ul style="list-style: none; ">
<li style="display: inline; margin: 3%; height: 350px; " class="col-md-3">
<div>
<h5 style="font-weight: bold; color: #003399"><?php the_title() ?></h5>
</div>
<div>
<a href="<?php the_permalink(); ?>"> <img style="width: 150px; height: 150px; align-content: center;" src="<?php echo get_field("supplier_logo") ?>"/></a>
</div>
</li>
</ul>
</div>
<?php endwhile; endif; wp_reset_query(); ?>
</div>
任何人都可以指导我如何删除该错误。不管怎样我不需要这个模板上的共享插件......
提前谢谢你:)
答案 0 :(得分:0)
大多数时候,Wordpress的注意事项是你根本不必担心的事情,尽管通知插件的开发人员是一个好主意,以便他们可以在将来的版本中修复它。
如果您的网站正常运行并且您正在管理一个高效的网站,那么最好的方法应该是关闭调试消息。
在wp-config.php
文件中,将WP_DEBUG设置为false:
define('WP_DEBUG',false);