18 lines
357 B
PHP
18 lines
357 B
PHP
<?php
|
|
/**
|
|
* @package Polylang-Pro
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Don't access directly.
|
|
}
|
|
|
|
add_action(
|
|
'after_setup_theme',
|
|
function () {
|
|
if ( did_action( 'pll_init' ) && ( defined( 'AC_FILE' ) || defined( 'ACP_FILE' ) ) ) {
|
|
add_action( 'admin_init', array( PLL_Integrations::instance()->cpac = new PLL_CPAC(), 'init' ) );
|
|
}
|
|
}
|
|
);
|