添加新的短代码需要在插件文件中具有以下功能:
add_shortcode( \'google-cal\', \'output_calendar\' );
这意味着您的插件有一个名为
output_calendar
这就是Wordpress看到短代码时调用的
[google-cal]
在帖子或页面内容中。将现有代码放入
output_calendar
作用
插件中只需要三件事:
1) 标识插件的注释块。
/*
Plugin Name: Joel\'s Google calendar shortcode
Description: Outputs Google calendar content.
Version: 1.0
Author: Joel
Author URI: http://www.monkeycalendar.com/
License: GPL2 (or whatever)
*/
2)该
add_shortcode
函数调用。
3) Theoutput_calendar
函数定义。
将插件php文件放在wp-content/plugins中(在它自己的文件夹中或在那里的根目录下),并在管理UI中激活它。将短代码添加到帖子或页面,并在站点中看到它。
阅读shortcode docs 了解如何将参数传递给shortcode函数。
请注意,如果您只希望内容出现在帖子或页面内容之外的模板中,请将output_calendar
在模板文件中显示日历的位置或使用do_shortcode
作用