📜  删除联系表格 7 css 代码示例

📅  最后修改于: 2022-03-11 14:47:49.637000             🧑  作者: Mango

代码示例1
add_action( 'wp_print_styles', 'wps_deregister_styles', 100 );
function wps_deregister_styles() {
    wp_deregister_style( 'contact-form-7' );
}