Hello, everyone. I was searching for how to call a specific album in the codeblock. Actually the codeblock is working in the theme and I was able to call a link to the gallery. But what I want to do is to show the entire thumbnail index of a specific album.
Any idea anyone, please ?
best regards
Comments
Also review the theming tutorial how album pages are done. You will need that if you really want the entire "thumb index". In any case you will need to do some coding.
<?php if(function_exists("printCustomMenu")) {printCustomMenu("bio");} ?>
(Btw, there is no `printAlbum()` method or function at all … )
If a link is enough for you a custom menu is a way.
< ?php while (next_album()): ?>
< ?php printAlbumThumbImage(getAlbumTitle()); ?>
< ?php endwhile; ?>
You could use `makeAlbumCurrent()` to set the current album context. Then this would print the albums within that current album if it has subalbums. But if you call that on an album or image page it may cause other issues.