⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 通用php博客主页通用php博客主页通用php博客主页
💻 PHP
字号:
<?php get_header(); ?>

   <?php if (have_posts()) : ?>
		
		<?php while (have_posts()) : the_post(); ?>
				
			<div class="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(', ') ?> and tagged: <?php the_tags('', ', ', ''); ?></div>
					</div>
				</div>
			
				<div class="entry">
					<?php the_content() ?>
					<div class="postbottom">
						<?php comments_popup_link('No Comments', '1 Comment', '% Comments', 'commentslink', 'Comments Off'); ?>
						<a href="http://stumbleupon.com/submit?url=<?php the_permalink() ?>&amp;title=<?php the_title(); ?>" class="stumbleupon"></a>
						<a href="http://digg.com/submit?phase=2&amp;url=<?php the_permalink() ?>&amp;title=<?php the_title(); ?>" class="digg"></a>
						<a href="http://del.icio.us/post?url=<?php the_permalink() ?>&amp;title=<?php the_title(); ?>" class="delicious"></a>
						<a href="http://google.com/bookmarks/mark?op=edit&amp;bkmk=<?php the_permalink() ?>&amp;title=<?php the_title(); ?>" class="google"></a>
					</div>
				</div>
				
		
			</div>
			
				<?php trackback_rdf(); ?>

		<?php endwhile; ?>
				<div class="navigation">
					<?php posts_nav_link('','','&laquo; Previous Entries') ?>
					<?php posts_nav_link('','Next Entries &raquo;','') ?>
				</div>
	<?php else : ?>

		<h2 class="center">Not Found</h2>
		<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>

	<?php endif; ?>
	
<?php get_sidebar(); ?>
<?php get_footer(); ?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -