jan_dembowski

shan-signature.php

Feb 16th, 2012
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Shan's Excellent Signature Plugin
  4. */
  5. add_filter( 'the_content' , 'shan_add_signature' , 1 );
  6. function shan_add_signature($text) {
  7.    global $post;
  8.    if($post->post_type == 'post') $text .= '<div class="signature"> <img src="' . get_stylesheet_directory_uri() . '/images/signature.jpg" alt="signature" /> </div>';
  9.    return $text;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment