您可以按照JediTricks007所示的方式进行操作。但是,如果您希望登录页使用完全不同的css和js,并且不希望包含wordpress主题的页眉和页脚,您可以通过不包含页眉和页脚来实现。
<?php
/*
* Template Name: Your Template Name
*/
?>
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Your Title</title>
<meta name="description" content="Your Description">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Add your own desired css independent to wordpress theme -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<!-- Add your own desired js independent to wordpress theme -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!-- Add your site or application content here -->
<p>Hello world! This is HTML5 Boilerplate.</p>
<!-- Add your own desired css independent to wordpress theme -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/{{JQUERY_VERSION}}/jquery.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>
这样,您就可以在不更改主题页眉和页脚文件的情况下实现任何想要的目标。
保存模板文件后,您可以使用该模板创建一个页面,并将该页面设置为您的主页。
希望这有帮助。