我正在尝试设计自己的结帐页面。 我想要一个没有标题的空白页面,没有侧栏...所以我在我的子主题文件夹中保存了一个新页面模板(下面的代码)。
<?php
/**
Template Name: Page with background only
*/
?>
<html>
<head>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<style type="text/css">
body { background-color: #cccccc; background-image: url('http://uffekirkegaard.dk/wp-content/uploads/2010/10/bg.jpg'); background-repeat: repeat-y; background-position: top center; background-attachment: scroll; }
#page-content { width: full; margin-left: 100px;margin-right: 100px;margin-top: 30px; }
#page-content p { font-size: 1em; font-family: Georgia; line-height: 1.5em; text-align: justify; }
</style>
<title><?php wp_title( '|', true, 'right' ); bloginfo('name'); ?></title>
<?php wp_head(); ?>
</head>
<body>
<?php while (have_posts()) : the_post(); ?>
<div id="page-content">
<?php the_content(); endwhile; ?>
</div>
</body>
</html>
不幸的是,此代码阻止了我的主题中已存在的功能:登录功能。 现在当访问者点击登录链接时没有发生任何事情。但如果我发布页面模板并点击登录,登录框将显示(查看照片)