How can I add Lightroom Album Title to a page with PHP

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 /**/

Look at the phplugins-pangolin-sample.php file. Starting at line 491 is a function that includes calling the album title.

That’s it. Thanks Rod. I see there has to be some html in markup(md) in Main Copy for the PHP to appear.

you need to add your own html in the function to supply a place for the data to be displayed