-
-
Save tomjn/52b6eb6a340aeeb3e85c to your computer and use it in GitHub Desktop.
This file contains 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 | |
function add_menu_item( $name ) { | |
// stuff... | |
do_action('item_added'); | |
} | |
// in another file.... | |
function add_last_item() { | |
// add a 'last' item | |
add_item( 'last' ); | |
} | |
// say we need a 'last' item that we apply css classes to | |
add_action( 'item_added', 'add_last_item' ); | |
add_menu_item( 'home' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment