• rrskda

    (@rrskda)


    Just wondering if it’s possible to link featured images. My blog is going to rely heavily on images, largely photos from my flickr page, and the template I’m using only works with images posted as featured images. However as far as I can tell featured images must be hosted locally, and I’m concerned this will cost a pretty penny as I continue adding content. It would be much much better if I could simply link to image URLs. Haven’t come across a plugin that enables this though. Anyone found anything like that?

Viewing 5 replies - 1 through 5 (of 5 total)
  • .C

    (@lemonthirst)

    Thread Starter rrskda

    (@rrskda)

    Thank you Lemonthirst, sounds like that will do what I need. Have to check that my theme has that get_the_post_thumbnail(); function first, since this is not a free plugin. Seems well worth the cost in the long run though.

    .C

    (@lemonthirst)

    Well most themes/templates have that option, check your functions.php file

    Thread Starter rrskda

    (@rrskda)

    Hmm well I checked the theme’s function.php file (I am using Zenith), as well as the WordPress default themes, and none seem to have that particular function. Is it as simple a matter as adding the line into the code somewhere? I’m not a coder, so this is something I don’t know anything about.

    .C

    (@lemonthirst)

    Ok sorry for the late reply, i have downloaded the theme myself,
    here it goes:
    On the functions.php
    Line 68: add_theme_support( ‘get-the-image’ );

    The support is added in the /library/hybrid.php
    /* Load the Get the Image extension if supported. */
    require_if_theme_supports( ‘get-the-image’, trailingslashit( HYBRID_EXTENSIONS ) . ‘get-the-image.php’ );

    and the file for post thumbnails is located in /library/extensions/get-the-image.php
    more help is here Get the image plugin
    as mentioned in the file.

    Hope it helps you, and i think it should work with no problem.
    I would recommend in the future to use a text editor like notepad++ to search for a bits of code, functions in the whole template by opening the whole template with it.

    Cheers!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Possible to link featured images?’ is closed to new replies.