Ben bu mesajı benim eklenti etkinleştirmek her zaman alıyorum:
The plugin generated 80 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Ben mesajı bastırmak için tek yolu (** aşağıya bakınız) koşullu benim aktivasyon fonksiyon kodunu sarılmasıdır.
Nasıl uyarıyı önlemek için bu yeniden gerekir?
function myPlugin($post)
{
echo "Whatever is here throws an unexpected output alert when the plugin isa activated";
}
register_activation_hook(__FILE__, 'myPlugin');
Koşullu olarak fonksiyon kodunu Sarma uyarıları bastırır:
function myPlugin($post)
{
global $pagenow;
if ( is_admin() && $pagenow !== 'plugins.php' ) {
echo "No more alerts when its wrapped this way";
}
}
?>