Search
Close this search box.

sample view

[cc]

 

/**
* Add dynamic text hover.
*
* @param array $text_hover_array Array of all text hover terms and their hover texts.
* @return array
*/
function my_text_hovers( $text_hover_array ) {
// Add new term and hover text
$text_hover_array[‘Matt’] => ‘Matt Mullenweg’;
// Unset a term that we never want hover texted
if ( isset( $text_hover_array[‘Drupal’] ) )
unset( $text_hover_array[‘Drupal’] );
// Important!
return $text_hover_array;
}
add_filter( ‘c2c_text_hover’, ‘my_text_hovers’ );
[tooltip content=”This will show in a tooltip” url=”This will make tooltip a link”]Hover over me for tooltip[/tooltip]
[/cc]

IB tutors juhu

/**
* Add dynamic text hover.
*
* @param array $text_hover_array Array of all text hover terms and their hover texts.
* @return array
*/
function my_text_hovers( $text_hover_array ) {
// Add new term and hover text
$text_hover_array[‘Matt’] => ‘Matt Mullenweg’;
// Unset a term that we never want hover texted
if ( isset( $text_hover_array[‘Drupal’] ) )
unset( $text_hover_array[‘Drupal’] );
// Important!
return $text_hover_array;
}
add_filter( ‘c2c_text_hover’, ‘my_text_hovers’ );