1) 在landingpage中的页面模板目录上创建一个模板页面。使用此代码的php
page-templates/landingpage.php
<?php
/**
* Template Name: Landing page
*/
?>
<div id="main-content" class="main-content">
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php
// Start the Loop.
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- #main-content -->
2)使用图像添加页面内容,并应用单击时显示的链接
3) 在运行时查看您的登录页,并为登录页制作css。