I’d like to use the same Backlight album template in Lightroom to publish multiple albums, but I’d like to give each album a unique title which can be the LR album title field.
Can I put a code in one of these that will pick up the LR album title?
function main_top() {
if( preg_match( '/^BACKLIGHT-PANGOLIN(.*)$/', $this->style ) ) {
// FUNCTION HERE
echo '';
}
// OR //
if ( $this->style == 'BACKLIGHT-PANGOLIN' ) {
// FUNCTION HERE
echo '';
}
} // END /**/