Skip to content

Instantly share code, notes, and snippets.

@dd32
Created January 4, 2022 04:31
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 dd32/61707fd2060718355375fe7771a315d5 to your computer and use it in GitHub Desktop.
Save dd32/61707fd2060718355375fe7771a315d5 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cli_show_cookie_bar_only_on_selected_pages', 'hide_banner_on_mshots' );
function hide_banner_on_mshots( $html ) {
if ( false !== strpos( $_SERVER['HTTP_USER_AGENT'], 'mShots' ) ) {
$html = '';
}
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment