get post type id code example
Example: check backend post type
function this_screen() {
$current_screen = get_current_screen();
if( $current_screen ->id === "page" ) {
include_once 'page_admin.php';
}
}
add_action( 'current_screen', 'this_screen' );