More information →
These days everyone with a blog understands the importance of thumbnail images. Three years ago it was common place to have exclusively text, but now a nice image is a requirement. As such the process of implementing the image needs to be made easier.
With my WordPress themes, Elemental in particular, I have simplified things as much as possible. You can set your own thumbnail using the WordPress featured image functionality, or you can use custom fields (which is generally considered ‘old fashioned’ despite being the height of technology just 2 years gone). However my favorite methods is the automatic thumbnails – which is the system I use most often on my websites.
The automatic thumbnails method involves the theme working out what images are used in the post, and then resizing one of these. The benefit of this being that all I have to do is embed an image into a post, and my thumbnail will display.
Obviously, being the developer behind TimThumb, I use TimThumb for all of my thumbnail requirements. This means the hard part is working out what image to resize, and this is where I use Regular Expressions (often shortened to Regex).
A regular expression is a complicated looking string of text and punctuation that creates rules used by a computer to find information.
Before I show how I do this I feel I should point out that I am not an expert at Regex. I know the fundamentals, but working out proper regular expressions is an art form in itself, and it’s not one I am interested in learning. If you ever need to write a regular expression, then just Google it. 9 times out of 10 someone will have done what you want!
Find The Image
In pseudo code, what we need to do is:
- get the post content
- Use regex to find all images
- loop through all images and check if they are valid
Which in PHP looks something like:
// get post content
global $post;
$content = $post->post_content;
// set default image value
$theImageSrc = '';
// regex to find all images
preg_match_all ('|<img .*?src=[\'"](.*?)[\'"].*?/>|i', $content, $matches);
$imageCount = count ($matches);
// needs to be a loop
// Notice the += 2 in the for iterator
// 0 = full image html tag
// 1 = image path selected
if ($imageCount >= 1) {
for ($i = 1; $i <= $imageCount; $i += 2) {
if (isset ($matches[$i][0])) {
$theImageSrc = $matches[$i][0];
break;
}
}
}
Default Image
If you wanted to supply a default image when using this code then you could easily add the following code after the image detection above.
if (empty ($theImageSrc)) {
$theImageSrc = 'path/to/default/image.jpg';
}
What Next?
So what can you do with this? What I did in Elemental is wrap that code into a function, and then combine it with the code I created in my post about how to use TimThumb with WordPress MultiSite. The resulting url can then be used as the image src with TimThumb, and that image can be used as a post thumbnail.
I actually combined this with a variety of other methods for grabbing the post image which means that however you attach an image to a post, it will be found. You can read about the different methods I use on this post on Elemental Hub.
Was it good/ useful/ a load of old rubbish? Let me know on Mastodon, or BlueSky (or Twitter X if you must).
Link to this page
Thanks for reading. I'd really appreciate it if you'd link to this page if you mention it in your newsletter or on your blog.