ALT tag to images in shortcode Bootstrap
-
Hello, what I want is to get the ALT tag for images in the plugin dynamically, so I supposed that I have to use a filter for the function, in shrtocode > Image, which seems like this:
function osc_theme_image($params, $content = 'Label') { extract(shortcode_atts(array( 'src' => '', 'class' => '', 'shape' => '' ), $params)); $out = ''; $out = '<img src="' . $src . '" class="' . $class .' '. $shape .EBS_CONTAINER_CLASS. '">'; return $out; } ebs_backward_compatibility_callback('image', 'osc_theme_image');
Any ideas of how could I get my Alt tags working?
Thanks in advanced
- The topic ‘ALT tag to images in shortcode Bootstrap’ is closed to new replies.