1

将单页网站变成 wordpress 网站的最佳做法是什么?我应该如何在一个文件中呈现不同的页面(例如front-page.php),一个接一个地出现?页面上的每个部分都应该是不同的 wordpress(静态)页面。呈现其他模板的一个模板?

先感谢您!

4

2 回答 2

0

在 index.php 文件中,使每个部分成为页面名称的后查询。

<section>
<?php query_posts('pagename=youpagename'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div>the coontent etc.</div>
<?php endwhile; ?>
</section>
于 2013-05-29T17:49:38.150 回答
0

这是我不久前使用的一些代码。可能会帮到你。确保当你测试它时,后端的 ID 匹配页面。

<section id="usp" class="clearfix">

    <?php

        $pages = get_pages('include=11,212,15,17&sort_column=menu_order');

        $count = 0;

        foreach($pages as $page)

        {

        $content = $page->post_excerpt;

    ?>

    <div class="column">

        <div class="inner">

            <h2><a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a></h2>

            <div class="usp-excerpt"><p><?php echo $content ?></p></div>

            <a href="<?php echo get_page_link($page->ID) ?>" title="<?php echo $page->post_title ?>" class="usp-readmore">More&hellip;</a>

        </div> <!-- end inner -->

    </div> <!-- end column -->

    <?php } ?>

</section> <!-- end usp -->
于 2013-06-06T07:50:24.170 回答