Skip to content

Instantly share code, notes, and snippets.

@8ctopotamus
Forked from mrkdevelopment/functions.php
Created November 3, 2020 00:35
Show Gist options
  • Save 8ctopotamus/b93d0d0d11aec27ea5a2299bf39b435a to your computer and use it in GitHub Desktop.
Save 8ctopotamus/b93d0d0d11aec27ea5a2299bf39b435a to your computer and use it in GitHub Desktop.
remove divi cpt style action
/**
* Disable new divi crazy crap code for CPT
**/
function disable_cptdivi()
{
remove_action( 'wp_enqueue_scripts', 'et_divi_replace_stylesheet', 99999998 );
}
add_action('init', 'disable_cptdivi');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment