GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Code for Anyone use imgur.com links on wordpress (https://gfy.com/showthread.php?t=1101096)

fris 02-25-2013 07:18 AM

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

Mark67 02-25-2013 07:20 AM

Just what I was after.

xxxcoupon 02-25-2013 07:22 AM

Good stuff fris

What do you think about the yoast plugin?

The Heron 02-25-2013 07:35 AM

neato, always helpful!


All times are GMT -7. The time now is 09:11 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123