Skip to content

Instantly share code, notes, and snippets.

@marklchaves
Last active September 27, 2020 22:54
Show Gist options
  • Save marklchaves/970939fceeff3de3a7a039ca3e2eab24 to your computer and use it in GitHub Desktop.
Save marklchaves/970939fceeff3de3a7a039ca3e2eab24 to your computer and use it in GitHub Desktop.
Use an Avada Hook to Add Text Under the Logo
<?php
/**
* Use an Avada Hook to Add Text Under the Logo
*/
function my_logo_text() {
echo "<h3>Some Text Under the Logo</h3>";
}
add_filter( 'avada_logo_append', 'my_logo_text' );
@marklchaves
Copy link
Author

Screen Grab

avada-text-under-logo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment