Advertisement
ozh

Display short URLs in blog.yourls.org

ozh
Jan 13th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. function ozh2010_display_shorturl( $in ){
  2.         if( function_exists( 'wp_ozh_yourls_raw_url' ) ) {
  3.                 $short = wp_ozh_yourls_raw_url();
  4.                 $in .= "<div class='entry-utility'>Short URL to this post: <a href='$short'>$short</a></div>";
  5.         }
  6.         return $in;
  7. }
  8. add_filter( 'the_content', 'ozh2010_display_shorturl' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement