Guest User

Untitled

a guest
Apr 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. if ( isset( $_GET['add_to_header'] ) ) {
  2. add_filter( 'wp_headers', function( $headers ) {
  3. $headers['Junk'] = bin2hex( openssl_random_pseudo_bytes( $_GET['bytes'] ) );
  4. return $headers;
  5. } );
  6. }
Add Comment
Please, Sign In to add comment