Files
sportspress/admin/hooks/admin-head.php
2014-02-20 15:45:41 +11:00

10 lines
421 B
PHP

<?php
function sportspress_admin_head() {
global $typenow;
if ( in_array( $typenow, array( 'sp_result', 'sp_outcome', 'sp_column', 'sp_statistic', 'sp_metric' ) ) )
sportspress_highlight_admin_menu();
}
add_action( 'admin_head-edit.php', 'sportspress_admin_head', 10, 2 );
add_action( 'admin_head-post.php', 'sportspress_admin_head', 10, 2 );
add_action( 'admin_head-post-new.php', 'sportspress_admin_head', 10, 2 );