Disable ACF on frontend

PHOTO EMBED

Mon May 22 2023 05:05:45 GMT+0000 (Coordinated Universal Time)

Saved by @dawidofski

add_action( 'wp_enqueue_style', 'wphelp_deregister_styles', 100 );
  
function wphelp_deregister_styles() {
 if( ! is_admin() ) {
  wp_deregister_style( 'acf' );
  wp_deregister_style( 'acf-field-group' );
  wp_deregister_style( 'acf-global' );
  wp_deregister_style( 'acf-input' );
  wp_deregister_style( 'acf-datepicker' );
 }
}
content_copyCOPY

https://wpmunk.com/wordpress-performance-optimization-without-plugin/