Chỉ hiển thị Contact form 7 trong trang Liên Hệ

add_action( 'wp_print_styles', 'aa_deregister_styles', 100 );
function aa_deregister_styles() {
    if ( ! is_page( 'lien-he' ) ) {
        wp_deregister_style( 'contact-form-7' );
    }
}

add_action( 'admin_head', function () {
	?>
	<style type="text/css">
		.iframe-frame {
			box-shadow: unset !important;
		}
	</style>
	<?php
} );