HTML到wordpress转换页面

时间:2013-10-07 09:09:40

标签: php html wordpress wordpress-theming

我对将HTML转换为WordPress感到困惑。

我有以下HTML页面“关于我们,联系我们,团队”等...

在WordPress中我是否也创建了“关于us.php,联系我们.php,Team.php” 要么 创建一个ContentPage.php并在wordpress上创建页面“关于我们,联系我们,团队


我还在考虑创建“关于us.php,联系Us.php,Team.php”然后添加一个标签,用户可以在其中更改文本

找不到关于此的解释的教程。

2 个答案:

答案 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 WordPressIntegrating WordPress with Your Website

答案 1 :(得分:1)

有几种方法......

  1. 聘请自由职业者
  2. 参考codex
  3. 手动转换
  4. 使用自动转换器。这是我发现的最好的:https://htmltowordpress.io