Created
February 17, 2016 15:46
-
-
Save cjkoepke/0a79ba30cd7cc6b4d191 to your computer and use it in GitHub Desktop.
Example code of badly prefixed functions.
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 | |
/* | |
* Example code of badly prefixed functions. | |
* | |
*/ | |
add_action( 'genesis_after_header', 'sp_third_navigation' ); | |
function sp_third_navigation() { | |
// Code | |
} | |
add_action( 'genesis_header', 'child_dynamic_header' ); | |
function child_dynamic_header() { | |
// Code | |
} | |
add_action( 'genesis_footer', 'custom_footer' ); | |
function custom_footer() { | |
// Code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment