On February 16, 2014 at 6:24 pm
Add this to your functions.php:
// wpml shortcodes --------------------
add_shortcode( 'wpml_language', 'wpml_find_language');
/* ---------------------------------------------------------------------------
* Shortcode [wpml_language language="en"] [/wpml_language]
* --------------------------------------------------------------------------- */
function wpml_find_language( $attr, $content = null ){
extract(shortcode_atts(array(
'language' => '',
), $attr));
$current_language = ICL_LANGUAGE_CODE;
if($current_language == $language){
$output = do_shortcode($content);
}else{
$output = "";
}
return $output;
}
after this:
$content_width = 630;
then you can use this shortcode in slide title and content like this:
[wpml_language language="en"] My English Title [/wpml_language]
[wpml_language language="fr"] My French Title [/wpml_language]