This is weird, I know.
I want to make a 'tweet this!' link on the pages, and to do that, I need to be able to self-reference the URL.
`
:%20URLGOESHERE" rel="nofollow">Tweet This
`
Obviously I want to replace URLGOESHERE with ... the URL
So How can I extract THIS page's URL? That is if I have it on an album page, I want it to show the album URL, etc etc.
Comments
http://www.zenphoto.org/documentation/functions/_template-functions.php.html#functiongetAlbumLinkURL
http://www.zenphoto.org/documentation/functions/_template-functions.php.html#functiongetImageLinkURL
http://www.zenphoto.org/documentation/plugins/zenpage/_plugins---zenpage---zenpage-template-functions.php.html#functiongetNewsURL
http://www.zenphoto.org/documentation/plugins/zenpage/_plugins---zenpage---zenpage-template-functions.php.html#functiongetPageLinkURL
It helps to look at the documentation, all functions are titled quite "speaking"...
`
:%20http://my.domain.com/
<?php echo getAlbumLinkURL(); ?>" rel="nofollow">Tweet
This
`
and for image.php
`
:%20http://my.domain.com/
<?php echo getImageLinkURL(); ?>" rel="nofollow">Tweet
This
`
Muchas Gracias!