插件在激活过程中生成了意外输出的X字符(WordPress)
该插件在激活过程中产生了80字符的意外输出。如果您注意到“已发送的标题”消息、联合提要的问题或其他问题,请尝试禁用或删除此插件。
function myPlugin( $post ) { echo "Whatever is here throws an unexpected output alert when the plugin isa activated";}register_activation_hook( __FILE__, 'myPlugin' );
function myPlugin( $post ) { global $pagenow; if ( is_admin() && $pagenow !== 'plugins.php' ) { echo "No more alerts when its wrapped this way"; } }}register_activation_hook( __FILE__, 'myPlugin' );
不负相思意
慕标琳琳