function talking_avatar_shortcode($atts) {
$atts = shortcode_atts(array(
'text' => 'Hello, world!',
'avatar' => 'default-avatar',
'language' => 'en-US',
), $atts);
return "
";
}
add_shortcode('talking_avatar', 'talking_avatar_shortcode');
function talking_avatar_shortcode($atts) {
$atts = shortcode_atts(array(
'text' => 'Hello, world!',
'avatar' => 'default-avatar',
'language' => 'en-US',
), $atts);
return "
";
}
add_shortcode('talking_avatar', 'talking_avatar_shortcode');