Skip to content

Instantly share code, notes, and snippets.

@holisticnetworking
Created October 29, 2013 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save holisticnetworking/7217183 to your computer and use it in GitHub Desktop.
Save holisticnetworking/7217183 to your computer and use it in GitHub Desktop.
Extending the ParentFunctions class in a child theme.
class ChildFunctions extends ParentFunctions {
function setup() {
// No need to declare another name for this function, simple rewrite it as necessary
}
/* Giddyup */
public function ChildFunctions() {
parent::ParentFunctions();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment