Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created June 12, 2013 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebEndevSnippets/5766651 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/5766651 to your computer and use it in GitHub Desktop.
Plugin: Conditionally Load TablePress Plugin CSS
/**
* Conditionally Load TablePress Plugin CSS
*
*/
add_filter( 'tablepress_use_default_css', 'we_remove_tablepress_default_css' );
function we_remove_tablepress_default_css() {
if ( ! is_front_page() ) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment