Code for Anyone use imgur.com links on wordpress

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fris
    Too lazy to set a custom title
    • Aug 2002
    • 55679

    #1

    Code for Anyone use imgur.com links on wordpress

    Curious if anyone does. I wrote a little piece of code that will let you just post image urls in your post box (similar to the way you can do automatica youtube embeds)

    add this to your functions.php file

    Code:
    wp_embed_register_handler('imgur', '#https?://(.+\.)?imgur\.com/.*#i', 'wp_imgur_embed_handler');
    
    function wp_imgur_embed_handler( $matches, $attr, $url, $rawattr ) {
    	$embed = sprintf('<img src="%1$s" />',$url);
    	$embed = apply_filters( 'oembed_imgur', $embed, $matches, $attr, $url, $rawattr );
    	return apply_filters( 'oembed_imgur', $embed, $url, '' );
    }
    or you can download the plugin version https://github.com/chrismccoy/imgur
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.
  • Mark67
    So Fucking Banned
    • Feb 2013
    • 269

    #2
    Just what I was after.

    Comment

    • xxxcoupon
      Confirmed User
      • Dec 2012
      • 172

      #3
      Good stuff fris

      What do you think about the yoast plugin?
      To get listed on our site please email us at [email protected]

      Comment

      • The Heron
        Confirmed User
        • Apr 2001
        • 4496

        #4
        neato, always helpful!

        Comment

        Working...