【 更新備忘 】

增加标准模式下的自定义图片模式

代码修改如下
源代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php } else{// 没有缩略图?>
<div class="post-content cf">
<ul class="post-meta">
<li class="nomtime"><?php the_time('Y.m.j'); ?></li>
<li class="nomcomt"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></li>
<?php if (function_exists('the_views')): ?><li class="nomview"><?php the_views(); ?></li><?php endif; ?>
<li class="nomcat"><?php the_category('<br />'); ?></li>
</ul>
<section class="nom-content cf"> 
<h2 class="left zhenghei"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2><span class="readmore right"><a href="<?php the_permalink() ?>" title="閱讀更多:<?php the_title(); ?>" rel="nofollow">←閱讀更多←</a><?php edit_post_link();?></span>
<div class="clear"></div>
<?php if($options['postmore'] || post_password_required() ) : ?> 
<?php the_content(__(''));?>
<?php else : ?>										
<?php echo cut_str(strip_tags(apply_filters('the_content',$post->post_content)),120); ?><br>
<?php the_tags(__('<span class="relatetitle">Tags:</span> ','iLost'),' ・ ','');?>
<?php endif; ?>							
</section> 	
</div>
<?php }  ?>		
<?php } // 文章样式结束 Oh yeah~ ?>

改成

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php } else{// 没有缩略图?>
<div class="post-content cf">
 
<div class="post-thumb">
<?php if ( get_post_meta($post->ID, 'image', true) ) : ?>
<?php $image = get_post_meta($post->ID, 'image', true); ?>
<img  width="112px" height="112px" src="<?php echo $image; ?>" alt="<?php the_title(); ?>"/>
<?php else : ?>
 
<ul class="post-meta">
<li class="nomtime"><?php the_time('Y.m.j'); ?></li>
<li class="nomcomt"><?php comments_number('No Comments', '1 Comment', '% Comments'); ?></li>
<?php if (function_exists('the_views')): ?><li class="nomview"><?php the_views(); ?></li><?php endif; ?>
<li class="nomcat"><?php the_category('<br />'); ?></li>
</ul>
 
<?php endif;?>
</div>
 
<section class="nom-content cf"> 
<h2 class="left zhenghei"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2><span class="readmore right"><a href="<?php the_permalink() ?>" title="閱讀更多:<?php the_title(); ?>" rel="nofollow">←閱讀更多←</a><?php edit_post_link();?></span>
<div class="clear"></div>
<?php if($options['postmore'] || post_password_required() ) : ?> 
<?php the_content(__(''));?>
<?php else : ?>										
<?php echo cut_str(strip_tags(apply_filters('the_content',$post->post_content)),120); ?><br>
<?php the_tags(__('<span class="relatetitle">Tags:</span> ','iLost'),' ・ ','');?>
<?php endif; ?>								
</section> 	
</div>
<?php }  ?>		
<?php } // 文章样式结束 Oh yeah~ ?>

参考语句就是加入有缩略图的话,显示图,如果没有的话,就显示日期评论数等。

主要增加了

1
2
3
4
5
6
7
8
<div class="post-thumb">
<?php if ( get_post_meta($post->ID, 'image', true) ) : ?>
<?php $image = get_post_meta($post->ID, 'image', true); ?>
<img  width="112px" height="112px" src="<?php echo $image; ?>" alt="<?php the_title(); ?>"/>
<?php else : ?>
 
					<?php endif;?>
</div>

只要在自定义栏目如此设定就可以了

效果

图片为外链。
无须在自己的空间上传图片。

也不一定会用到。但是特色图片那个缩略图模式我绝对是不会用的啦~所以~~
然后大概以前有些日志有设image的现在估计都显现出来了~~

更新日:2012/11/19 · 16:03


————本日志版权归花莫笑所有。
日志内的相关图文请勿转载。

Leave a Reply

Your email address will not be published.

[太开心] [二哈] [doge] [太阳] [允悲] more »
Support By henghost
©2006-2023 ファモシャオの声優レコード | WordPress Theme: Cosimo by CrestaProject.