?? search.php
?? 通用php博客主頁通用php博客主頁通用php博客主頁
?? PHP
字號:
??
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<h2> Search Results</h2>
<div class="post">
<?php while (have_posts()) : the_post(); ?>
<div class="posttop">
<div class="dateicon">
<div class="day"><?php the_time('d') ?></div>
<div class="month"><?php the_time('M') ?></div>
</div>
<div class="title">
<div class="thetitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></div>
<div class="under">stored in: <?php the_category(', ') ?></div>
</div>
</div>
<div class="entry">
<?php the_excerpt() ?>
<div class="postbottom">
<?php comments_popup_link('No Comments', '1 Comment', '% Comments', 'commentslink', 'Comments Off'); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">No posts found. Try a different search?</h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -