我正在尝试建立一个wordpress网站。我想要一页设计。我已经建了5页 每个人都有自己的php文件。如何在一个页面中连接5个页面? 预先感谢您的帮助, 法比亚娜
答案 0 :(得分:0)
您可能根本不需要使用多个页面,而是为wordpress(如短码)实现内置功能,或者使用帖子并对帖子进行多次查询。然后,您可以分段设计页面(1),并确保$loop = new WP_Query( $args );
在同一页面上启用多个查询。这些查询将/应该只查询帖子而不是页面。
第1节布局
$args1 = shortcode_atts (array(
'tag' => 'post-type',
'post_type'=> 'post',
'cat' => '', // Category ID
'posts_per_page' => 1,
'bgimageurl' => ''), $atts);
$query1 = new WP_Query( $args2 );
// The Loop
while ( $query1->have_posts() ) {
$query1->the_post();
the_content();
wp_reset_postdata();
第2节布局
$args2 = shortcode_atts (array(
'tag' => 'userchoice',
'post_type'=> 'post',
'cat' => '', // Category ID
'posts_per_page' => 1,
'bgimageurl' => ''), $atts);
$query2 = new WP_Query( $args2 );
答案 1 :(得分:0)
您可以查看this plugin for wordpress,它提供了使用fullPage.js plugin创建全屏滚动页面的方法。