add_filter( 'template_include', 'areas_page_template', 99 );
function areas_page_template( $template ) {
global $post;
if( $post->post_type == 'page' ){
if ( $new_template = wp_normalize_path(__DIR__.'/my_page.php') )
$template = $new_template ;
}
return $template;
}