Changeset 1557001
- Timestamp:
- 12/18/2016 05:01:30 PM (9 years ago)
- File:
-
- 1 edited
-
vocatip/trunk/VocaTip.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vocatip/trunk/VocaTip.php
r1556997 r1557001 10 10 */ 11 11 function vocatip($atts, $content) { 12 $content = ucwords($content);12 13 13 static $tooltipID = 0; 14 14 $attrs = shortcode_atts(array( … … 26 26 $tooltipID++; 27 27 $output = '<span class="tooltipster" id="tooltipster' . $tooltipID . '" title="">'; 28 $output .= $content; 28 $output .= '<font color="red">'; 29 $output .= $content; 30 $output .= '</font>'; 29 31 $output .='</span>'; 30 32 $image = $attrs['image']; 31 33 $title = $attrs['title']; 34 $content = ucwords($content); 32 35 $tooltipContent = '<span class="tooltipster_content"><strong><b>' . $title . '</b>' . $attrs['text'] . '</strong></span>'; 33 36 ?>
Note: See TracChangeset
for help on using the changeset viewer.