2

我必须将以下 HTML 网站转换为 Wordpress 的主题。我试图弄清楚如何根据页面/帖子/自定义模块和主题来构建主题。

我的页面中有 5 个部分

  1. 主页(滑块和内容)
  2. 知道(包含内容的标签)
  3. 查看(具有可过滤效果的项目)
  4. 阅读(博客和文章)
  5. 谈话(联系表格)

我想让客户能够编辑页面上的大部分内容。

请指导我开始。

链接: http: //play.mink7.com/sophiance/

*编辑*

我创建了一个页面'home',并将settings>reading>其选为站点的静态内容。

接下来,我创建了一个名为template-home.php并选择home使用此模板的模板。

4

2 回答 2

0

在您的 index.php 文件中放置 5 个部分。

在每个部分 - 创建一个新查询来拉页面。

例如使用自定义帖子类型

  <section id="home">
    //Slider Content
<?php query_posts('pagename=home'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?>//Loop Content
<?php endwhile; endif; wp_reset_query(); ?>
</section>

<section id="know">
<?php query_posts('pagename=know'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?>//Loop Content
<?php endwhile; endif; wp_reset_query(); ?>
</section>

等等

然后使用该名称创建每个页面,它将提取数据

我在这里创建了一个这样的网站

于 2013-06-10T17:42:01.060 回答
0

这是您应该如何构建您的 Wordpress 网站的方式:

Home (Slider and content) - create a page called Home and a custom page template called home

Know (tabs with content) - use a shortcode plugin to have tabbed content, default page template

View (Projects with filterable effect) - use a plugin that displays content in a masonry layout, default page template

Read (blog and articles) - create posts (under posts) and display them using the post archive.

Talk (contact Form) - use default page template and a plugin like Gravity Themes for the contact form

有关如何构建 Wordpress 网站的类似想法,请访问http://www.mybuzzmedia.net

于 2013-06-10T18:03:55.483 回答