Advertisement
acegiak

Untitled

Jun 21st, 2013
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //attaches in-reply-to classes to the first link in the post
  2.  
  3. function the_content_in_reply_to_callback($matches){
  4. if(preg_match('`href=.mailto`i',$matches[0])){
  5. return $matches[0];
  6. }else{
  7. $class = "u-in-reply-to";
  8. if(preg_match('`(\<|&lt;)3`i',$matches[3])){
  9. $class = $class ." u-like";
  10. }
  11. return '<a class="'.$class.'" rel="in-reply-to" '.$matches[1].'>'.$matches[2].$matches[3].$matches[4].'</a>';
  12. }
  13. }
  14. function the_content_in_reply_to_filter($content) {
  15. return preg_replace_callback('`\<[aA] (.*?)>(.*?)(\<3|&lt;3|@)(.*?)</[aA]>`','the_content_in_reply_to_callback',$content,1);
  16. }
  17.  
  18. add_filter( 'the_content', 'the_content_in_reply_to_filter' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement