Skip to content

Instantly share code, notes, and snippets.

@steveobbayi
Created November 20, 2019 06:33
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 steveobbayi/79aef8bfbf9817d97ed1b917be9232f2 to your computer and use it in GitHub Desktop.
Save steveobbayi/79aef8bfbf9817d97ed1b917be9232f2 to your computer and use it in GitHub Desktop.
<?php
function your_function() {
// Contents for your parent theme function here.
}
add_action( 'init', 'your_function', 20 );
function your_function() {
// Contents for your child function override here.
}
add_action( 'init', 'your_function', 25 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment