[Plugin: SubPages] Fixed error messages for wp 3.1.1
-
When I transferred my website from being locally hosted to a live server, I started getting error messages on several plugins, including this one.
I received an error message saying that the register_sidebar_widget and register_sidebar_control were deprecated on lines 153-154. A quick search indicated that I needed to swap them out with the new syntax. However, doing so generated new error messages b/c the new syntax requires 3 parameters. I read in a forum for a different plugin that you need to add a unique id as the 1st string. Eventually this is what worked for me:
wp_register_sidebar_widget('subpg-displaywidget',__('SubPages Display'), 'widget_SubPages'); wp_register_widget_control('subpg-ctrl','SubPages Display','subpages_control');
The only problem is that now the widget says it has no options, whereas before it allowed me to select depth levels, etc. I’m not sure if this is caused somehow by what I did or not. However, my site is working fine without the options, listing the subpages as they were before.
Hope this helps someone else!
- The topic ‘[Plugin: SubPages] Fixed error messages for wp 3.1.1’ is closed to new replies.