remove unneeded hovertext functions, now comes from attachment

This commit is contained in:
John Bintz 2009-07-13 04:20:26 -04:00
parent f12185395b
commit b8d2f8e5ec
1 changed files with 0 additions and 13 deletions

View File

@ -99,19 +99,6 @@ function comicpress_list_storyline_categories($args = "") {
echo $output;
}
/**
* Display text when image (comic) is hovered
* Text is taken from a custom field named "hovertext"
*/
function the_hovertext() {
echo get_the_hovertext();
}
function get_the_hovertext() {
$hovertext = get_post_meta(get_the_ID(), "hovertext", true );
return (empty($hovertext)) ? get_the_title() : $hovertext;
}
/**
* Display the comic transcript
* Transcript must be entered into a custom field named "transcript"