Files
sportspress/admin/hooks/current-screen.php
2014-03-25 00:19:34 +11:00

8 lines
254 B
PHP

<?php
function sportspress_current_screen() {
$screen = get_current_screen();
if ( $screen->id == 'dashboard' )
include_once( dirname( SP_PLUGIN_FILE ) . '/admin/tools/dashboard.php' );
}
add_action( 'current_screen', 'sportspress_current_screen' );