PluginProbe
Polylang / 3.2.2
Polylang v3.2.2
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
polylang / modules / sync / sync-term-metas.php

sync-term-metas.php in Polylang 3.2.2, at modules/sync/sync-term-metas.php

26 lines 366 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Polylang
4 */
5
6 /**
7 * A class to manage copy and synchronization of term metas
8 *
9 * @since 2.3
10 */
11 class PLL_Sync_Term_Metas extends PLL_Sync_Metas {
12
13 /**
14 * Constructor
15 *
16 * @since 2.3
17 *
18 * @param object $polylang
19 */
20 public function __construct( &$polylang ) {
21 $this->meta_type = 'term';
22
23 parent::__construct( $polylang );
24 }
25 }
26