gb.php

来自「php168开源网站系统」· PHP 代码 · 共 34 行

PHP
34
字号
<?php
/*
Template Name: Guest Book
*/
?>

<?php get_header(); ?>

	<div id="primary">
	<div class="inside">
	<div class="utom">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
		<h1><?php the_title(); ?></h1>
				<?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
	
				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
	  <?php endwhile; endif; ?>
	<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
	</div>
	</div>
	</div>

<hr class="hide" />
	<div id="secondary">
		<div class="inside">
			
			<?php comments_template(); ?>

		</div>
	</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>

⌨️ 快捷键说明

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