get_current_language() != $sitepress->get_default_language() ) {
$default_url = preg_replace(
'/(^http[s]?:\/\/)/',
'',
$sitepress->language_url( $sitepress->get_default_language() )
);
$current_url = preg_replace( '/(^http[s]?:\/\/)/', '', home_url() );
$preview_url = $default_url . 'nextgen-attach_to_post/preview';
$alt_preview_url = $default_url . 'index.php/nextgen-attach_to_post/preview';
if ( preg_match_all( "#
#mi", $content, $matches, PREG_SET_ORDER ) ) {
foreach ( $matches as $match ) {
$content = str_replace( $match[0], "
", $content );
}
}
}
return $content;
}
}
$wpml_ngg = new WPML_Plugin_Integration_Nexgen_Gallery();