Skip to content

Instantly share code, notes, and snippets.

@cjkoepke
Created February 17, 2016 15:46
Show Gist options
  • Save cjkoepke/0a79ba30cd7cc6b4d191 to your computer and use it in GitHub Desktop.
Save cjkoepke/0a79ba30cd7cc6b4d191 to your computer and use it in GitHub Desktop.
Example code of badly prefixed functions.
<?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