Wordpress - How to get a gif working as a Featured Image? Big Problem?!

DanielBlue

New member
Joined
Aug 15, 2017
Messages
27
Points
0
Since some time I am trying to get a gif working as a featured image on wordpress. I know it can be done but all modification I made till now did not work! They are working inside the post but not on the frontpage… any ideas?
 
Last edited:

Marc van Leeuwen

Premium Member
Joined
May 29, 2016
Messages
1,162
Points
63
You can add this code to functions.php in your theme folder

Code:
<?php $thumb_url = get_the_post_thumbnail_url();
	  $thumb_low = strtolower($thumb_url);
	  if (strpos($thumb_low, '.gif') === false) {
	  	$thumb_size = 'large';
	  } else {
	  	$thumb_size = 'full';
	  } ?>
Normally, Wordpress will process your featured images via this function the_post_thumbnail() and it will resize your image to 150x150 thus your gif image will not work. Now when you added that function then it will always display your image size as uploaded.

Hope that helped.
 

DanielBlue

New member
Joined
Aug 15, 2017
Messages
27
Points
0
Thank you but when adding the code the page is not working anymore at all. :(
 
Last edited:
Older threads
Replies
5
Views
8,553
Replies
2
Views
2,527
Replies
1
Views
3,863
Newer threads
Replies
30
Views
11,063
Replies
8
Views
8,552
Replies
0
Views
2,063
Latest threads
Replies
1
Views
428
Replies
1
Views
220
Replies
2
Views
535
Replies
4
Views
1,078
Recommended threads
Replies
0
Views
2,990
Replies
20
Views
12,623
Replies
8
Views
5,859
Replies
28
Views
12,756

Latest postsNew threads

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top