Created
December 1, 2015 03:17
-
-
Save cjkoepke/b90f84edc079f58b0a79 to your computer and use it in GitHub Desktop.
Add a progress bar to your Genesis child theme.
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
<?php | |
//* Do NOT copy the opening PHP tag | |
//* Add progress bar | |
add_action( 'genesis_before', 'ck_progress_bar_markup' ); | |
function ck_progress_bar_markup() { | |
echo '<div class="progress-bar"><div class="progress-bar-inner"></div></div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment