插件在激活期间生成了XXX意外输出

时间:2016-07-02 15:09:09

标签: wordpress

插件在激活期间生成79个意外输出字符。如果您发现“已发送标头”消息,联合供稿问题或其他问题,请尝试停用或删除此插件。

代码为贝娄

<?php
/*
Plugin Name:Stock Notifier
Plugin URI:
Description: product out of stock.
Version: 1
*/

include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if ( is_plugin_active( 'woocommerce/woocommerce.php' ) || class_exists( 'WooCommerce' )) {


class Stock_Notifier {

} // End Class GIS_Stock_Notifier

new Stock_Notifier();

}else { ?> 
<!-- When remove else then work perfect but i need display notice message -->
<div class="update-nag notice">
    <p>First Install Woocoomerce Plugin</p>
</div>  
<?php
}

插件依赖于woocommerce插件。 在其他部分删除启动PHP和结束PHP然后工作但如何打印通知消息。

建议我。 感谢。

1 个答案:

答案 0 :(得分:0)

您的插件不应该单独输出或回显任何内容,而应使用hooks来操作内容。

如果您这样做,仍然有错误

  

插件在激活期间生成X行意外输出

您可以安装this以查看该插件的输出内容。