我有我的WordPress帖子格式代码:
<?php
if ( has_post_format( \'image\' )) {
echo \'This is a image post\';
} ?>
我的代码是从帖子中抓取第一张图片。。。
<a href="<?php the_permalink() ?>">
<?php $image = catch_that_image();
if( $image ) { ?>
<img src="<?php echo get_template_directory_uri(); ?>/scripts/timthumb.php?src=<?php echo $image; ?>&h=240&w=280" class="index" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
<?php } ?>
</a>
那么,如何将抓取的图像放入第一个代码中呢?
感谢所有的帮助,我真的很感激。
最合适的回答,由SO网友:Bainternet 整理而成
here:
<?php
if ( has_post_format( \'image\' )) {
?>
<a href="<?php the_permalink() ?>">
<?php $image = catch_that_image();
if( $image ) { ?>
<img src="<?php echo get_template_directory_uri(); ?>/scripts/timthumb.php?src=<?php echo $image; ?>&h=240&w=280" class="index" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
<?php } ?>
</a>
<?php
} ?>