Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeroenSormani/f3be1244408af522013e4e1063570423 to your computer and use it in GitHub Desktop.
Save JeroenSormani/f3be1244408af522013e4e1063570423 to your computer and use it in GitHub Desktop.
A site-wide banner in WooCommerce / WordPress
<?php // For implementation instructions see: https://aceplugins.com/how-to-add-a-code-snippet/
/**
* Basic site-wide banner.
*/
function ace_custom_site_banner() {
?><div class="site-banner">
<span>
<strong style="">Sale!</strong> Get up to 50% off, sale ending this friday.
</span>
</div><?php
}
add_action( 'wp_footer', 'ace_custom_site_banner' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment