Skip to content

Instantly share code, notes, and snippets.

@engelen
Last active August 29, 2015 13:58
Show Gist options
  • Save engelen/10349643 to your computer and use it in GitHub Desktop.
Save engelen/10349643 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/is_cac_screen', 'myplugin_is_cac_screen' );
function myplugin_is_cac_screen( $is_cac_screen ) {
// Possibly modify $is_cac_screen
return $is_cac_screen;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment