In my image.php file, the breadcrumb link back to album.php displays the "album name" as the link text. I'd like to change it to something generic like "Back to the Album" or somesuch.
I messed around with printAlbumBreadcrumb, but the only parameters appear to be for 'before' text, 'after' text, and the 'title' displayed during mouseover/hover. Tried to echo printAlbumBreadcrumb in a href but it still printed out the gallery name as the text link, rather than solely providing the link address presented as my custom text.
I'm guessing there's an easy solution that I'm missing, can anyone point me in the right direction?
Comments
I'm using a slightly modified version of the default theme and didn't see a custom functions file in there. So I created a simple blank functions.php and copied the printAlbumBreadcrumb code into there, then substituted my desired text for the call to getAlbumTitle(). Renamed printAlbumBreadcrumb slightly in functions.php to avoid any declarations conflict, and made the same change in image.php.
Is that the correct process?
Thanks again for the advice, very helpful as usual...