Skip to content

Instantly share code, notes, and snippets.

@StewartChamberlain
Created June 22, 2013 19:24
Show Gist options
  • Save StewartChamberlain/5842254 to your computer and use it in GitHub Desktop.
Save StewartChamberlain/5842254 to your computer and use it in GitHub Desktop.
<?php
function sc_bottom_overlay() {
$button_text = 'Purchase'; // Button Text
$link_uri = 'http://YOUR_LINK_HERE'; // Url for button Link
$overlay = '<div class="overlay"><span style="opacity:1;"><a class="overlay-button" href="'. $link_uri .'">'. $button_text .'</a></span></div>';
echo $overlay;
}
add_action( 'genesis_after_footer', 'sc_bottom_overlay' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment