PATH:
home
/
letacommog
/
seneve10
/
wp-content
/
plugins
/
polylang
/
modules
/
sync
<?php /** * Loads the module for general synchronization such as metas and taxonomies. * * @package Polylang */ if ( ! defined( 'ABSPATH' ) ) { exit; // Don't access directly }; if ( $polylang->model->get_languages_list() ) { if ( $polylang instanceof PLL_Admin_Base ) { $polylang->sync = new PLL_Admin_Sync( $polylang ); } else { $polylang->sync = new PLL_Sync( $polylang ); } add_filter( 'pll_settings_modules', function( $modules ) { $modules[] = 'PLL_Settings_Sync'; return $modules; } ); }
[+]
..
[-] admin-sync.php
[edit]
[-] sync-metas.php
[edit]
[-] sync-term-metas.php
[edit]
[-] sync-tax.php
[edit]
[-] load.php
[edit]
[-] sync-post-metas.php
[edit]
[-] settings-sync.php
[edit]
[-] sync.php
[edit]