我正在将我的html网站转换为wordpress。可以将页面模板用作联系人页面吗?例如,您已联系我们。html
<!DOCTYPE html>
<html>
<head>
<title>Contact Page</title>
</head>
<body>
<!-- contact page content code goes here -->
</body>
</html>
然后您只需将页眉和页脚更改为
<?php get_header(); ?>
<!-- contact page content code goes here -->
<?php get_footer(); ?>
它对seo友好吗?