插件在激活期间生成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然后工作但如何打印通知消息。
建议我。 感谢。