I\'m using the Thematic framework for a child theme. It has a number of hooks, but I\'m looking at thematic_header() in particular. The thematic_header() hook adds the follo
Just in case this helps someone, the variable actions are stored in is
global $wp_filter; var_dump( $wp_filter[$hook_name] );
Which is an array of arrays with the keys being the priority when the action was added.