我对代码做了一些更改,只是做了一个小屏幕截图,上面有一个示例,显示了它现在的样子以及我希望它的样子(在右侧)。
我们先来看看代码,现在看起来是这样的:
<h2 class="title_bar">Just Watched Videos</h2>
<ul class="vlist">
<?php $args = array( \'numberposts\' => 12, \'orderby\' => \'rand\' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li class="video" id="video_<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" title="<?php echo get_the_title(); ?>">
<?php $thumb = tube_getcustomfield(\'wtp_thumb_url\',get_the_ID()); if ( $images = get_children(array(
\'post_type\' => \'attachment\',
\'numberposts\' => 1,
\'post_status\' => null,
\'post_parent\' => $post->ID
)));
foreach( $images as $image ) {
$attachment = wp_get_attachment_image_src( $image->ID );
// Size
$width = 240;
$height = 160;
$zoom_crop = 1;
?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php esc_attr( printf( __( \'Click to read %s\', \'truereps\' ), get_the_title() ) ); ?>">
<img src="<?php bloginfo( \'template_directory\' ); ?>/inc/scripts/timthumb.php?src=<?php echo $attachment[0]; ?>&w=<?php echo $width; ?>&h=<?php echo $height; ?>&zc=<?php echo $zoom_crop; ?>" alt="<?php the_title(); ?>" />
</a>
<?php } ?>
<i></i>
<span class="box">
<span class="views"><?php if(function_exists(\'the_views\')) { the_views(); } ?></span>
<span class="time"><?php echo time_ago(); ?></span>
</span>
<strong><?php short_title(\'...\', \'34\'); ?></strong> </a>
</li>
<?php endforeach; ?>
</ul>
<div class="clear"></div>
这就是它现在的样子:
我只是从我的电脑上随机拍了一张照片作为例子,但我希望更容易理解我的想象,它看起来是这样的:“我也不使用其他网站的链接,而是使用”;“特色想象”;WordPress中的选项,可将图片上传至WP。
提前谢谢,祝你有美好的一天:)!