Wordpress widget creation -
% wordpress I created for the tool to turn php functions into Wordpress widget. I use the register_sidebar_widget function but it seems that wp_register_sidebar_widget will give me more options. Is it legal?
P.S. I also generate widgets in the new 2.8 format.
register_sidebar_widget - Although it can still be used, But you can use the wp_register_sidebar_widget . If you use register_sidebar_widget , you want to bracket it in if (function_exists ('register_sidebar_widget')) that function is removed in later versions is. Apart from this, there is a plugin, Otto's PHP code widget, which allows PHP code in the widget. .
Comments
Post a Comment