1
將單頁網站轉換爲wordpress網站的最佳做法是什麼?我應該如何呈現一個文件中的不同頁面(例如front-page.php),並且一個接一個地出現? 頁面上的每個部分都應該是不同的wordpress(靜態)頁面。一個呈現其他模板的模板?WordPress的:在一個頁面上顯示多個靜態頁面(單頁網站)
預先感謝您!
將單頁網站轉換爲wordpress網站的最佳做法是什麼?我應該如何呈現一個文件中的不同頁面(例如front-page.php),並且一個接一個地出現? 頁面上的每個部分都應該是不同的wordpress(靜態)頁面。一個呈現其他模板的模板?WordPress的:在一個頁面上顯示多個靜態頁面(單頁網站)
預先感謝您!
在index.php文件中使每個部分成爲頁面名稱的後期查詢。
<section>
<?php query_posts('pagename=youpagename'); if (have_posts()) while (have_posts()) : the_post(); ?>
<div>the coontent etc.</div>
<?php endwhile; ?>
</section>
這是我用過的一段代碼。可以幫助你。 確保在測試後端的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…</a>
</div> <!-- end inner -->
</div> <!-- end column -->
<?php } ?>
</section> <!-- end usp -->