28 lines
632 B
PHP
28 lines
632 B
PHP
<?php
|
|
/**
|
|
* @package Polylang-Pro
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Don't access directly.
|
|
}
|
|
|
|
if ( $polylang->model->has_languages() ) {
|
|
add_filter(
|
|
'pll_settings_modules',
|
|
function ( $modules ) {
|
|
$k = array_search( 'PLL_Settings_Preview_Share_Slug', $modules );
|
|
if ( $k ) {
|
|
$modules[ $k ] = 'PLL_Settings_Share_Slug';
|
|
}
|
|
return $modules;
|
|
},
|
|
20 // After Polylang.
|
|
);
|
|
|
|
if ( get_option( 'permalink_structure' ) && $polylang->options['force_lang'] ) {
|
|
$polylang->share_post_slug = new PLL_Share_Post_Slug( $polylang );
|
|
$polylang->share_term_slug = new PLL_Share_Term_Slug( $polylang );
|
|
}
|
|
}
|