SO网友:Frank P. Walentynowicz
在您的插件类(例如MyPlugin)中,添加公共静态函数,返回一些内容:
public static function my_plugin_output() {
// Build your content
$output = \'<div>\';
$output .= \'This is a text to display.\';
$output .= \'</div>\';
return $output;
}
激活插件后,将此行添加到任何模板中,您希望插件内容出现:
<?php if (class_exists(\'MyPlugin\')) echo MyPlugin::my_plugin_output(); ?>