Skip to content

Instantly share code, notes, and snippets.

@jepser
Created April 30, 2017 16:21
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 jepser/b5f6244006da26839a0f6c0d8e89d487 to your computer and use it in GitHub Desktop.
Save jepser/b5f6244006da26839a0f6c0d8e89d487 to your computer and use it in GitHub Desktop.
Example of hooks WordPress
function super_duper_function(){
//...
}
add_action('la acción donde quiero que se ejecute', 'super_duper_function');
add_filter('el filtro que deseo modificar', 'super_duper_function');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment