恐怕它比这更复杂一些。您的 CSS 可以导入,但您的 HTML 结构必须转换为实际的 Wordpress 主题,以便能够读取在管理方面定义的信息。因此,假设您有一个如下所示的 HTML 文件:
about.html
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="jQuery.js"></script>
</head>
<body>
<div id="header">
<h1>About Me</h1>
</div>
<div id="body">
<p>This page is all about me</p>
</div>
<div id="footer">
<small>Copyright 2013</small>
</div>
</body>
</html>
Wordpress 等价物是这样的:
头文件.php
<html>
<head>
<title><?php bloginfo('name'); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" />
<!-- Enqueue Javascript in functions.php -->
</head>
<body>
<div id="header">
<h1>About Me</h1>
</div>
page-about.php
<?php get_header(); ?>
<div id="body">
<?php
if(have_posts()) : while(have_posts()) : the_post;
the_content();
endwhile;endif;
?>
</div>
<?php get_footer(); ?>
页脚.php
<div id="footer">
<small>Copyright 2013</small>
</div>
</body>
</html>
这是对 Wordpress 主题化过程的主要过度简化。我的建议是执行以下操作:
- 下载一些免费的 Wordpress 主题,看看你喜欢哪些。和他们一起玩。习惯环境。甚至可以调整另一个主题的 CSS 以满足您自己的需求。
- 搜索法典!这包含您希望了解的有关主题的所有信息。
- 学习 PHP。
您的问题是一个加载的问题,并且在一个答案中太多了。你能为自己做的最好的事情就是研究一切。
祝你好运。