我試圖激活是在本地主機上運行WordPress的一個小插件,但它運行到以下錯誤:我無法激活我的WordPress插件在localhost
The plugin generated 6 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.
<?php
/*
Plugin Name: myphoto Plugin
Description: A plugin to retrieve photos and share them on the wordpress.
Version: 1.0
Author: Saeed pirdost
Copyright: 2012, Saeed pirdost
*/
?>
<?php
myprint();
function myprint()
{
echo "hello";
}
?>
我已經更新了問題,但它不工作 –
當我加入它的工作的功能的add_filter是什麼對於?我還有一個問題,當我激活代碼,它hello添加到我的儀表盤的每一頁,因爲我是新手到WordPress我不知道是否正常。 –
[admin_notices是一個過濾器鉤子](http://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices),這個特別顯示了所有管理頁面中的消息。你有很多東西要學習我的朋友。從這裏開始[插件API](http://codex.wordpress.org/Plugin_API) –