Advertisement
phpface

Untitled

Jul 7th, 2017
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. if( ! function_exists( 'videotube_add_noindex_tag' ) ){
  2.     /**
  3.      *
  4.      * Add a noindex tag once "latest" param found.
  5.      *
  6.      */
  7.     function videotube_add_noindex_tag() {
  8.         if( isset( $_GET['order_post'] ) && $_GET['order_post'] == 'latest' ){
  9.             echo '<meta name="robots" content="noindex, follow">';
  10.         }
  11.     }
  12.     add_action( 'wp_head' , 'videotube_add_noindex_tag',1);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement