![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/jetpack/3rd-party/ |
<?php /** * 3rd party integration for qTranslate. * * @package automattic/jetpack */ /** * Prevent qTranslate X from redirecting REST calls. * * @since 5.3 * * @param string $url_lang Language URL to redirect to. * @param string $url_orig Original URL. * @param array $url_info Pieces of original URL. * * @return bool */ function jetpack_no_qtranslate_rest_url_redirect( $url_lang, $url_orig, $url_info ) { if ( false !== strpos( $url_info['wp-path'], 'wp-json/jetpack' ) ) { return false; } return $url_lang; } add_filter( 'qtranslate_language_detect_redirect', 'jetpack_no_qtranslate_rest_url_redirect', 10, 3 );