Deprecated Widget constructors
-
Hey – latest WordPress, latest version of the plugin.
Minor note – WP deprecated the old WP_Widget constructor syntax (
parent::WP_Widget(...)
) as of 4.2. Those should all be replaced withparent::__construct(...)
inwidgets.php
. Might consider swapping the syntax on your widget classes as well (function JobmanLatestJobsWidget()
, for example, would befunction __construct()
).Cheers!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Deprecated Widget constructors’ is closed to new replies.