Skip to content

Instantly share code, notes, and snippets.

@danielbachhuber
Created September 30, 2019 17:17
Show Gist options
  • Select an option

  • Save danielbachhuber/b246b33539b7a0fec276fd553be80e11 to your computer and use it in GitHub Desktop.

Select an option

Save danielbachhuber/b246b33539b7a0fec276fd553be80e11 to your computer and use it in GitHub Desktop.

Revisions

  1. danielbachhuber created this gist Sep 30, 2019.
    12 changes: 12 additions & 0 deletions tasty-recipes-disable-print-pinning.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    <?php

    /**
    * Disable pinning on the print template.
    */
    add_action( 'template_redirect', function() {
    if ( function_exists( 'tasty_recipes_is_print' ) && tasty_recipes_is_print() ) {
    add_action( 'wp_head', function() {
    echo '<meta name="pinterest" content="nopin" description="Sorry, but please don\'t pin from the print page." />' . PHP_EOL;
    });
    }
    });