Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * Disable pinning on the print template.
  5. */
  6. add_action( 'template_redirect', function() {
  7. if ( function_exists( 'tasty_recipes_is_print' ) && tasty_recipes_is_print() ) {
  8. add_action( 'wp_head', function() {
  9. echo '<meta name="pinterest" content="nopin" description="Sorry, but please don\'t pin from the print page." />' . PHP_EOL;
  10. });
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement