缩略图图像不会出现在网站上

时间:2012-06-06 22:31:58

标签: php wordpress

我的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(); ?>" />

可能出现什么问题?

1 个答案:

答案 0 :(得分:1)

浏览到您的网站我看到了问题所在。如果您查看代码,就会生成如下代码:

<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; ?>