wp-content/plugins/hello.php:20function hello_dolly_get_lyric() { /** These are the lyrics to Hello Dolly */ $lyrics = "Hello, DollyWell, hello, DollyIt's so nice to have you back where you belongYou're lookin' swell, DollyI can tell, DollyYou're still glowin', you're still crowin'You're still goin' strongI feel the room swayin'While the band's playin'One of our old favorite songs from way back whenSo, take her wrap, fellasDolly, never go away againHello, DollyWell, hello, DollyIt's so nice to have you back where you belongYou're lookin' swell, DollyI can tell, DollyYou're still glowin', you're still crowin'You're still goin' strongI feel the room swayin'While the band's playin'One of our old favorite songs from way back whenSo, golly, gee, fellasHave a little faith in me, fellasDolly, never go awayPromise, you'll never go awayDolly'll never go away again"; // Here we split it into lines. $lyrics = explode( "\n", $lyrics ); // And then randomly choose a line. return wptexturize( $lyrics[ mt_rand( 0, count( $lyrics ) - 1 ) ] );}Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/plugins/hello.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.