For the complete documentation index, see llms.txt. This page is also available as Markdown.

weglot_url_object

Advanced. Lets you replace the Weglot\Util\Url object Weglot uses for the current request.

add_filter( 'weglot_url_object', 'custom_weglot_url_object' );
function custom_weglot_url_object( $weglot_url ) {
    return $weglot_url;
}