Created
March 26, 2025 10:33
-
-
Save jmabbas/4df0c29e18abf0396160a3d5385f25dc to your computer and use it in GitHub Desktop.
Electro Custom content between header and topbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'electro_before_header', 'custom_header_content', 15 ); | |
function custom_header_content() { ?> | |
<div class="container"> | |
cusotm content | |
</div> | |
<?php | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment