How to extend a custom widget in wordpress?
问题 I am talking about making a widget which extends a child widget of WP_Widget. Using this as reference: https://wordpress.stackexchange.com/questions/101438/how-to-extend-a-wp-widget-twice Example: My_WidgetBase extends WP_Widget My_Widget extends My_WidgetBase I want to know how to get My_Widget to show up with my other widgets (it is not currently). I have gotten My_WidgetBase to work. This is important for my framework. I understand that widget(), update(), and form() must be overridden,