Advertisement
Viper007Bond

Untitled

Mar 17th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php /*
  2.  
  3. Plugin Name: vin's robots head link thing, I need a better title
  4.  
  5. */
  6.  
  7. add_action( 'wp_head', 'vin_add_robots' );
  8.  
  9. function vin_add_robots() {
  10.     if ( ! is_page( 216 ) )
  11.         return;
  12.  
  13.     echo 'add the html here';
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement