WordPress文章列表没有缩略图就显示默认图片

<?php if ( get_post_meta($post->ID, ‘thumbnail’, true) ) : ?>

<?php $image = get_post_meta($post->ID, ‘thumbnail’, true); ?>

<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><img src=”<?php echo $image; ?>” alt=”<?php the_title(); ?>”/></a>

<?php else: ?>

<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title(); ?>”><img src=”<?php bloginfo(‘template_url’); ?>/assets/images/nopicture.jpg” alt=”<?php the_title(); ?>”/></a>

<?php endif; ?>

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

    暂无评论内容