英文:
smaple wordpress plugin header not showing my plugin in admin panel
问题
/*
- 插件名称:示例插件
- 描述:创建示例插件
- 作者:rafael
- 版本:1.0.0
*/
英文:
Hi i want create wordpress plugin and create smaple plugin
my plugin start by comment but my plugin not show in wordpress admin panel (wp-admin/plugins.php)
my comment is :
/*
* Plugin Name : smaple_plugin
* Description : create smaple plugin
* Author : rafael
* version : 1.0.0
*/
please help me
答案1
得分: 0
我遇到过这个问题。
只需删除每个注释标题(Plugin Name,Description,...)后面的空格并测试此代码。
/*
* Plugin Name: smaple_plugin
* Description: create smaple plugin
* Author: rafael
* version: 1.0.0
*/
英文:
oh I had this problem .
It is easy only remove space after each comment title( Plugin Name , Description , ... ) and test this
/*
* Plugin Name: smaple_plugin
* Description: create smaple plugin
* Author: rafael
* version: 1.0.0
*/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论