Implementing Custom Link Translation
function weglot_get_current_full_product_by_id( $product_id ) {
$post = get_post( $product_id );
if ( ! $post || $post->post_type !== 'product' ) {
return '';
}
$product_url = get_permalink( $product_id );
return weglot_create_url_object( $product_url )->getForLanguage( weglot_get_request_url_service()->get_current_language() );
}
echo weglot_get_current_full_product_by_id( 17 );Last updated