Hey guys.
I recently bought a Wordpress theme from a couple of guys who do not have such a good reputation here in the forum.
The support, unfortunately, does not answer, so I'm here to ask if anyone can help with a line php.
Google says the video-tag for "thumbnailUrl" is missing. This sucks, because the theme is meant for videos.
This is the code on the theme:
This is the output on my site:
Yepp, I have added a featured image/thumbnail to each post, but somehow there is no output. So i guess, there is a small glitch in the php code.
I tried several codes, to get at least something.
Example:
I even tried this, just for a test, if anything comes up:
And, voila, I get the title of the post. So basically the meta itemprop="thumbnailUrl" content=" is correct, only the php-part is not.
Solution?
I recently bought a Wordpress theme from a couple of guys who do not have such a good reputation here in the forum.
The support, unfortunately, does not answer, so I'm here to ask if anyone can help with a line php.
Google says the video-tag for "thumbnailUrl" is missing. This sucks, because the theme is meant for videos.
This is the code on the theme:
Code:
<meta itemprop="thumbnailUrl" content="<?php echo $thumb; ?>" />
Code:
<meta itemprop="thumbnailUrl" content="" />
I tried several codes, to get at least something.
Example:
Code:
<meta itemprop="thumbnailUrl" content="<?php echo $get_the_post_thumbnail_url; ?>" /> <meta itemprop="thumbnailUrl" content="<?php echo the_post_thumbnail_url; ?>" />
Code:
<meta itemprop="thumbnailUrl" content="<?php echo $title; ?>" />
Solution?


Comment