PluginProbe
Polylang / 3.1.4
Polylang v3.1.4
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
← All changes | frontend/frontend.php +6 -0 3.03.1.4 View file →
@@ -58,8 +58,13 @@
58 58 */
59 59 public $static_pages;
60 60
61 61 /**
62 + * @var PLL_Frontend_Filters_Widgets
63 + */
64 + public $filters_widgets;
65 +
66 + /**
62 67 * Constructor.
63 68 *
64 69 * @since 1.2
65 70 *
@@ -118,8 +123,9 @@
118 123 // Filters
119 124 $this->filters_links = new PLL_Frontend_Filters_Links( $this );
120 125 $this->filters = new PLL_Frontend_Filters( $this );
121 126 $this->filters_search = new PLL_Frontend_Filters_Search( $this );
127 + $this->filters_widgets = new PLL_Frontend_Filters_Widgets( $this );
122 128
123 129 // Auto translate for Ajax
124 130 if ( ( ! defined( 'PLL_AUTO_TRANSLATE' ) || PLL_AUTO_TRANSLATE ) && wp_doing_ajax() ) {
125 131 $this->auto_translate();