Tagged Questions
0
votes
1answer
213 views
Display thumbnails for certain category posts
I have wondered about the web and came across this beautiful piece of code:
if(has_post_thumbnail()){
the_post_thumbnail();
}else{
echo '<img src="' . get_bloginfo('template_directory') ...
0
votes
2answers
343 views
Setup A Default Featured Image
I'm trying to setup a default fallback featured image on my website to ensure consistency with images being displayed for every post, even when an image is not embedded in the post. I've tried a ...