标签:
1 调用分类 2 3 <?php 4 $categories = get_categories(); 5 foreach($categories as $category): 6 ?> 7 8 <li><a href="?cat=<?php echo $category->cat_ID; ?>" class="selected filter-data"> 9 <?php echo $category->name; ?></a></li> 10 11 <?php endforeach; ?>
首页和栏目页摘要调用 <?php the_excerpt();?> 文章页摘要(其实主要是在single.php可以使用) <?php global $more ; $more = false; ?> <?php the_content(‘(more)‘);?> <?php $more = true; ?>
调用具体栏目的文章摘要 <?php $posts = get_posts( "category=6&numberposts=1" ); ?> <?php if( $posts ) : ?> <?php foreach( $posts as $post ) : setup_postdata( $post ); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><h2><?php the_title(); ?></h2> </a> <p class="ttime"><?php the_time(‘Y年M月d日g:i a‘); ?></p> <p><?php the_content(); ?></p> <?php endforeach; ?> <?php endif; ?>
调用分类文章【自动判断栏目】 <?php if( $posts ) : ?> <?php foreach( $posts as $post ) : setup_postdata( $post ); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><h2><?php the_title(); ?></h2> </a> <p class="ttime"><?php the_time(‘r‘); ?></p> <p><?php the_content(); ?></p> <?php endforeach; ?> <?php endif; ?>
调用文章中第一个图片,此代码应该写在function.php中 function 那个echo_first_image($width="85",$height="100") { global $post, $posts; ob_start(); ob_end_clean(); //通过正则表达式匹配文章内容中的图片标签 $output = preg_match_all(‘/<img.+src=[\‘"]([^\‘"]+)[\‘"].*>/i‘, $post->post_content, $matches); //第一张图片的html代码,下面加了那个缩放的js哦。。如果你不打算缩放,请删除 $first_img = ‘<img src="‘. $matches[1][0] .‘" width="‘.$width.‘" height="‘.$width.‘" alt="‘.$post->post_title .‘" onload="javascript:DrawImage(this,‘.$width.‘,‘.$height.‘)" />‘; if(empty($matches[1][0])){ //如果文章中没有图片,就调用下面的的默认代码,自己改图片url,也有缩放js $first_img = ‘<img src="‘. get_bloginfo(‘template_url‘) .‘/images/defalt.jpg" alt="‘.$post->post_title .‘" width="‘.$width.‘" height="‘.$height.‘" class="img-sidebar"/>‘; } //输出代码 echo ‘<a href="‘.get_permalink().‘" title="‘.$post->post_title.‘" >‘. $first_img .‘</a>‘; } 页面中调用应该这样写 <?php echo_first_image(‘85‘,‘100‘);?>
wp_links 友情链接表
其实主要涉及的就是分类,文章,摘要,博客自定义信息调用等方法
标签:
原文地址:http://www.cnblogs.com/qhorse/p/4561129.html