有几种方法可以在小部件中运行函数:
option 1 - ShortCodes
您可以通过在简单的文本小部件中输入短代码来创建自定义短代码并运行该功能:
//this is to make sure WordPress renders the shortcodes in a text widget
add_filter(\'widget_text\', \'do_shortcode\');
add_shortcode(\'my_short_code\',\'my_function\');
function my_function(){
//do whatever you want
}
然后简单地添加
[my_short_code]
到任何文本小部件来运行您的功能。
Option 2 Plugins
您可以使用许多插件中的一个,这些插件允许您在小部件中运行php,如:
Option 3 Custom Widgets
最后一种方法是使用非常简单的
Widgets API