19 lines
350 B
PHP
19 lines
350 B
PHP
<?php
|
|
/**
|
|
* @package Polylang-Pro
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Don't access directly.
|
|
}
|
|
|
|
add_action(
|
|
'plugins_loaded',
|
|
function () {
|
|
if ( function_exists( 'custom_post_widget_plugin_init' ) ) {
|
|
add_action( 'pll_init', array( PLL_Integrations::instance()->content_blocks = new PLL_Content_Blocks(), 'init' ) );
|
|
}
|
|
},
|
|
0
|
|
);
|