EEfaq论坛-赚客自留地

 找回密码
 免费注册
查看: 1121|回复: 8

好用的中文wp缩略图文插件

  [复制链接]
发表于 2013-12-22 10:59:42 | 显示全部楼层 |阅读模式
wp-thumbnails.zip (86.76 KB, 下载次数: 0, 售价: 1 e币)
发表于 2013-12-22 11:26:07 | 显示全部楼层
这个wp-thumbnails用起来是不错,百度一下大把下载资源
回复 支持 反对

使用道具 举报

发表于 2013-12-22 14:10:00 | 显示全部楼层
缩略图功能现在基本是代码实现的多,很少用插件了
回复 支持 反对

使用道具 举报

发表于 2013-12-22 15:35:10 | 显示全部楼层
回复 支持 反对

使用道具 举报

发表于 2013-12-22 16:58:00 | 显示全部楼层
鸟类网的作者编写的,用了好几年了
就同类插件来说 非常符合国人使用风格
回复 支持 反对

使用道具 举报

发表于 2013-12-22 22:32:58 | 显示全部楼层
好用就好,留着以后用
回复 支持 反对

使用道具 举报

发表于 2013-12-22 22:45:45 | 显示全部楼层
zch0071 发表于 2013-12-22 15:35
给一些常用代码来看看

1、在主题文件夹中建thumbnail.php 文件,添加如下代码:
<div class="thumbnail_t">
<?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: ?>

</div> <!-- 截图 -->
<div class="thumbnail">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php if (has_post_thumbnail()) { the_post_thumbnail('thumbnail'); }
else { ?>
<img class="home-thumb" src="<?php echo catch_first_image() ?>" width="140px" height="100px" (此处可以修改尺寸)alt="<?php the_title(); ?>"/>
<?php } ?>
</a> <?php endif; ?> </div>
2、在主题文件夹里面的functions.php文件中添加下面代码:没有请新建,
<?php
//支持外链缩略图 if ( function_exists('add_theme_support') ) add_theme_support('post-thumbnails'); function catch_first_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0];if(empty($first_img)){ //Defines a default image $random = mt_rand(1, 10); echo get_bloginfo ( 'stylesheet_directory' ); echo '/images/random/'.$random.'.jpg'; } return $first_img; }
?>
通过下面代码调用。 <?php include('/thumbnail.php'); ?>





回复 支持 反对

使用道具 举报

发表于 2013-12-23 14:31:11 | 显示全部楼层
这个好东西,值得收藏

回复 支持 反对

使用道具 举报

发表于 2013-12-31 15:51:21 | 显示全部楼层
谢谢分享,非常好。。。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

QQ|联系我们|Archiver|手机版|小黑屋|EEfaq论坛

GMT+8, 2024-5-2 17:44

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表