PluginProbe
Polylang / 2.9
Polylang v2.9
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 | include/base.php +6 -0 2.82.9 View file →
@@ -77,8 +77,14 @@
77 77 public function init() {
78 78 if ( $this->model->get_languages_list() ) {
79 79 $this->posts = new PLL_CRUD_Posts( $this );
80 80 $this->terms = new PLL_CRUD_Terms( $this );
81 +
82 + // WordPress options.
83 + new PLL_Translate_Option( 'blogname', array(), array( 'context' => 'WorPress' ) );
84 + new PLL_Translate_Option( 'blogdescription', array(), array( 'context' => 'WorPress' ) );
85 + new PLL_Translate_Option( 'date_format', array(), array( 'context' => 'WorPress' ) );
86 + new PLL_Translate_Option( 'time_format', array(), array( 'context' => 'WorPress' ) );
81 87 }
82 88 }
83 89
84 90 /**