Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter GabyS

    (@gabys)

    What is the gallery name variable and what file do I need to add it to to have the name display on the slideshow page?

    Plugin Author Jacob N. Breetvelt

    (@opajaap)

    Try this in the page template:

    <?php
    global $wppa;
    if ( is_array($wppa) ) { // wppa active
    $album = wppa_get_get('album');
    if ( is_numeric($album) ) {
    $album = wppa_get_album_name($album);
    }
    }

    $album will contain te album name.

    Thread Starter GabyS

    (@gabys)

    Great! Thanks that worked.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP Photo Album Plus] Adding Gallery Name to Slideshow Page’ is closed to new replies.