Hi guys,
I'm writing a widget for wordpress with the WP_Widget.
I know I have to write the form (optional), update and widget methods, but I want to add more method, because I need them.
I tried writing my new methods in my class which extends WP_Widget, but I've got fatal errors (Fatal error: Call to undefined function...).
So I guess I can add more function to my class extending WP_Widget.
In this case, my question is : where and how can I add functions which serve in my class ?
Thanks.