我创建了一个自定义字段,允许我设置timthumb的裁剪样式,但我也使用短代码在页面中填充博客帖子,但短代码没有选择自定义字段,因此所有图像看起来都不同。
这是索引中的代码。php
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php bloginfo(\'template_directory\'); ?>/timthumb.php?src=<?php echo $thumb; ?>&h=150&w=600&zc=1&q=100&a=<?php echo get_post_meta($post->ID, \'thumbcrop\', true); ?>"
alt="<?php the_title(); ?>" />
</a>
这是博客中的代码。php(短代码)
<a href="\'.get_permalink().\'" title="\'.get_the_title().\'">
<img src="\'. get_bloginfo(\'template_directory\').\'/timthumb.php?src=\'.$thumb.\'&h=100&w=600&zc=1&q=100"
alt="\'.get_the_title().\'" />
</a>
短代码文件尚未更新,因为我不确定如何传递customfield值。
有人能帮忙吗。非常感谢。