WordPress模板的image.php

来源:崔凯的博客 时间:2011-09-22 20:41:26 

最近一直在找“有评论功能”的相册插件,始终没有满意的结果,索性自己干了。

wordpress自2.5版本就开始自带了 wp_get_attachment_image 参数,它可以把附件当做一个页面展示出来,在页面上添加<?php comments_template(); ?>就可以实现评论功能了。评论演示

目前大多数主题都没有包含image.php,如果没有这个文件,我们可以复制一个single.php重命名为image.php来做相册的个性化调整。

首先查找 the_content 参数,在他的php标签上面,添加代码:

<p class="attachment"> 
<a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a> 
</p> 
<div class="caption"> 
<?php if ( !empty($post->post_excerpt) ) the_excerpt(); // "caption"标签包含的是照片描述区域,如果你懒得写描述,这部分内容可以删掉 ?> 
</div>

如果你想要“上一张”“下一张”的翻页效果,可以在the_content的下面,添加翻页代码:

<div class="further"> 
<p class="float_left">&laquo; <?php previous_image_link() ?></p> 
<p class="float_right"><?php next_image_link() ?> &raquo;</p>    
</div>

然后删掉post_tags、sidebar等等不需要的内容,来拓宽图片的展示空间。
添加overflow:auto;overflow-y:hidden样式到正文区域,给大图片添加横向滚动条。
增加返回相册首页的按钮。


相册效果演示地址:http://uicss.cn/photo/
以下是我目前的image.php源代码,供大家参考:


<?php get_header(); ?> 
<style> 
.entry{ overflow:auto;overflow-y:hidden} 
#content{width:100%; border:none; padding:0} 
.st-related-posts{display:none;} 
.entry h4{display:none} 
.attachment{ text-align:center; margin-bottom:0!important;overflow:auto;overflow-y:hidden;width:auto} 
#commentwrapper{ width:508px; margin:0 auto} 
.further{height:110px; margin-top:25px;} 
</style> 
<div id="content"> 
<div id="singlepost"> 
<?php if (have_posts()) : ?> 
<?php while (have_posts()) : the_post(); ?> 
<div class="post" id="post-<?php the_ID(); ?>"> 
<h2><a title="Permanent Link to 崔凯的相册" rel="bookmark" href="http://uicss.cn/photo/">&gt;&gt;返回相册首页</a></h2> 
<div class="entry"> 
<p class="attachment"> 
<a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a> 
</p> 
<?php the_content('Read the rest of this entry &raquo;'); ?> 
</div> 
<div class="further"> 
<p class="float_left">&laquo; <?php previous_image_link() ?></p> 
<p class="float_right"><?php next_image_link() ?> &raquo;</p>    
</div> 
</div><!--/post--> 
</div><!--/singlepost--> 
<?php comments_template('/photocomments.php'); ?> 
<?php endwhile; ?> 
<?php else : ?> 
</div> 
<?php endif; ?> 
</div><!-- /content --> 
<?php get_footer(); ?>

标签:wordpress,模板,相册
0
投稿

猜你喜欢

  • CentOS 设置默认JDK步骤详解及命令

    2023-12-14 20:58:39
  • 解决vmware上Ubuntu共享文件夹的问题

    2023-11-04 11:07:38
  • 如何有效建立Win2000 VPN服务器

    2007-08-16 14:20:00
  • 官方消息:Adsense三月付款将延迟

    2008-04-05 13:58:00
  • apache性能测试工具ab使用详解

    2023-07-15 01:15:42
  • YouTube直播U2演唱会获1000万网民热捧

    2009-10-30 16:23:00
  • linux下使用cmake编译安装mysql的详细教程

    2023-08-20 02:55:26
  • 淘宝封百度?必须的。

    2008-09-08 12:53:00
  • FTP服务器如何实现安全性(下)

    2007-08-14 15:37:00
  • VMware虚拟机桥接方式实现上网互通的方法

    2022-07-13 18:48:32
  • Centos7.5配置IP地址的实现

    2023-08-21 22:49:15
  • 百度算法更新后的思考

    2007-12-03 20:53:00
  • 简单分析3款小巧cms建站程序

    2009-01-06 12:24:00
  • 做站切忌跟风

    2008-06-09 14:42:00
  • 通过UCenter挂接SNS提高网站核心竞争力

    2009-04-15 07:18:00
  • 从驱动中国100万元收购qudong.com谈全拼域名的优势

    2007-08-05 13:30:00
  • Windows 2000 安全检查清单-初级篇

    2009-12-02 19:28:00
  • 面对电脑辐射的几点建议

    2008-11-25 13:44:00
  • Google Admanager广告管理系统整合AdSense

    2009-03-11 13:07:00
  • 文本与图片,哪项内容更重要?

    2008-02-15 07:29:00
  • asp之家 网站运营 m.aspxhome.com