
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

add_filter('get_the_author_description', 'presso_wpml_translate_author_description', '', 2);
if ( ! function_exists( 'presso_wpml_translate_author_description' ) ) {
	function presso_wpml_translate_author_description( $string, $user_id = false ) {
		if ( function_exists( 'icl_translate' ) && $user_id) {
			$author_slug = get_the_author_meta('user_nicename', $user_id);
			return icl_translate('wpml_custom', 'author_description_'.$author_slug, $string);
		}
		
		return $string;
	}
}