在WordPress主题中使用HTML5和CSS3非常简单,只需要在主题文件中用HTML5的标记编写内容,并使用CSS3样式为其添加样式和动画效果。以下是使用HTML5和CSS3的示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My WordPress Theme</title>
<!-- 在头部引入CSS样式表 -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>My WordPress Site</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Welcome to my WordPress site</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed nec ipsum fermentum, pharetra felis ac, molestie enim.</p>
</section>
<section>
<h2>Latest Blog Posts</h2>
<article>
<h3>Post Title</h3>
<p>Post content goes here...</p>
</article>
<article>
<h3>Post Title</h3>
<p>Post content goes here...</p>
</article>
<article>
<h3>Post Title</h3>
<p>Post content goes here...</p>
</article>
</section>
</main>
<footer>
<p>© 2021 My WordPress Site</p>
</footer>
</body>
</html>
CSS样式表可以包含HTML5元素的样式,如下所示:
/* 头部 */
header {
background-color: #fff;
padding: 20px;
border-bottom: 1px solid #ccc;
}
header h1 {
font-size: 36px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav a {
color: #333;
text-decoration: none;
font-size: 20px;
}
nav a:hover {
color: #666;
}
/* 主体 */
main {
padding: 20px;
}
section {
margin-bottom: 40px;
}
section h2 {
font-size: 28px;
margin-bottom: 20px;
}
article {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 20px;
}
article h3 {
font-size: 24px;
margin-bottom: 10px;
}
article p {
font-size: 16px;
line-height: 1.5;
}
/* 尾部 */
footer {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
}
通过这些代码,您可以创建一个简单而漂亮的WordPress主题,并使用HTML5和CSS3为其添加风格和动画效果。