添加Timthumb

时间:2012-12-09 03:34:37

标签: wordpress

我目前正在尝试将thimthumb添加到我的WordPress模板中。

我的自定义帖子类型图片目前以下列方式显示:

    <a class="image-link" href="<?php echo $url; ?>"><?php the_post_thumbnail('collection_cover', array('class' => 'cover')); ?></a>

这种原始方法工作正常,输出如下:

    <a class="image-link" href="http://myURL.com"><img width="202" height="408" src="http://myURL.com/wp-content/uploads/2012/10/Untitled-12.jpg" class="cover wp-post-image" alt="Untitled-1" title="Untitled-1"></a>

我试图用以下内容替换上面提到的内容:

    <a class="image-link" href="<?php echo $url; ?>"><img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php the_post_thumbnail('collection_cover', array('class' => 'cover')); ?>&h=150&w=150&zc=1" alt="<?php the_title(); ?>" width="100" height="57" /></a>

输出为:

    <a class="image-link" href="http://myURL.com"><img src="http://myURL.com/scripts/timthumb.php?src=&lt;img width=" 202"="" height="408" class="cover wp-post-image" alt="Untitled-1" title="Untitled-1">&amp;h=150&amp;w=150&amp;zc=1" alt="Test" width="100" height="57" /&gt;</a>

然而它似乎没有正常工作 - 任何人都知道如何让它工作?一些专家建议将不胜感激。

0 个答案:

没有答案