缩略图未显示在网站上


Thumbnail image does not appear on website

我的wordpress主题有问题。缩略图不会显示在每篇帖子中。我有一个游戏网站,每个游戏都有一个缩略图(图像)。但现在图像没有出现。当我尝试查看图像时,我得到这个:

Invalid src mime type: 

有问题的代码是:

<img src="<?php bloginfo('template_url');?>/thumb.php?src=<?=$thumb;?>&w=183&h=140&zc=1" class="thumb" alt="<?php the_title(); ?>" />

可能出了什么问题?

浏览到您的网站,我看到了问题所在。 如果你看一下你的代码,它是这样生成的:

<img src="http://jocuri2k.com/wp-content/themes/Games/thumb.php?src=<?=$thumb?>... ?>

似乎您的 PHP 解析器没有在标签中获取 php。 请尝试改用以下内容:

<img src="http://jocuri2k.com/wp-content/themes/Games/thumb.php?src=<?php=$thumb?>... ?>

您的 php 配置可能不允许使用"短标签"

<?
  code here
?>

而是需要完整的 PHP 标签,它们是:

<?php
  code here
?>

你也许可以在你的php.ini中覆盖它,但如果你无法访问它,只需使用完整的php标签,你应该很高兴。

<?php echo $thumb; ?>