我对将HTML转换为WordPress感到困惑。
我有以下HTML页面“关于我们,联系我们,团队”等...
在WordPress中我是否也创建了“关于us.php,联系我们.php,Team.php” 要么 创建一个ContentPage.php并在wordpress上创建页面“关于我们,联系我们,团队
我还在考虑创建“关于us.php,联系Us.php,Team.php”然后添加一个标签,用户可以在其中更改文本
找不到关于此的解释的教程。
答案 0 :(得分:3)
不,您不必为每个页面创建单独的php
文件,而是可以为显示任何页面时使用的所有页面创建page.php
文件,并且从Pages
菜单中的Wordpress管理面板创建页面。如果您的模板文件夹中有page.php
个文件,那么WordPress
将使用此模板显示每个页面,否则将使用index.php
文件。您还可以为特定页面创建自定义页面模板。基本页面模板的示例/结构(没有任何格式和HTML
标签)
get_header(); // adds the header (header.php)
if (have_posts()) : while (have_posts()) : the_post();
the_title(); // prints title of the page
the_content(); // prints content/body of the page
endwhile; endif;
get_sidebar(); // adds the sidebar (sidebar.php)
get_footer(); // adds the footer (footer.php)
这些是用于模板文件的常见结构和功能,但您应该阅读Codex以获取有关creating a page template的更多信息,并根据您网站的布局添加formatting/HTML
。另外,请检查Convert HTML to WordPress和Integrating WordPress with Your Website。
答案 1 :(得分:1)
有几种方法......