11 lines
344 B
PHP
11 lines
344 B
PHP
<?php
|
|
function sportspress_admin_head() {
|
|
global $typenow;
|
|
|
|
if ( in_array( $typenow, array( 'sp_result', 'sp_outcome', 'sp_column', 'sp_statistic' ) ) ):
|
|
sportspress_highlight_admin_menu();
|
|
endif;
|
|
}
|
|
add_action( 'admin_head-edit.php', 'sportspress_admin_head', 10, 2 );
|
|
add_action( 'admin_head-post.php', 'sportspress_admin_head', 10, 2 );
|