创建自定义页面模板

时间:2010-08-17 14:00:46

标签: wordpress wordpress-theming

我刚刚在WP Admin Dashboard中创建了我的“关于我们”页面,它指向我创建的about-us.php页面模板,并且有一个空的div内容,即

<div id="content"></div>

在这里,我想抓住wp-admin用户在仪表板“关于我们”页面中输入的内容,并将此内容放在我的

<div id="content">[Dashboard About Us Page Content to go Here]</div>

基本上想从“关于我们”WordPress页面获取整个内容并将其提供给我的about-us.php页面模板内容DIV。

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

<?php if(have_posts()): while(have_posts()): the_post();
the_content();
endwhile; endif; ?>

将其粘贴在空div中,它会动态提取内容。在这里阅读有关循环的更多信息:

http://codex.wordpress.org/The_Loop