我想使用函数get_template_part()在前页加载我的所有自定义页面;但每当我保存我的代码时,页面都会在页面上加载所有内容,但会继续在网站上反复循环内容。
using namespace std::chrono;
auto time = high_resolution_clock::now();
unsigned long long foo = time.time_since_epoch().count();
unsigned bar = foo;
我还要将其上传到github https://github.com/brandonpowell/Test-Wordpress-Site/tree/master/danielschriersite
答案 0 :(得分:1)
多次调用标题尝试删除每个模板
你也可以在首页模板中调用
尝试使用wordpress页面模板
https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/
<?php
/**
* Template Name: Front Page Template
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
<?php while (have_posts()) : the_post(); ?>
<?php get_template_part('templates/header'); ?>
<?php get_template_part('templates/page-about'); ?>
<?php get_template_part('templates/page-services'); ?>
<?php get_template_part('templates/page-portfolio'); ?>
<?php get_template_part('templates/page-contact'); ?>
<?php get_template_part('templates/footer'); ?>
<?php endwhile; ?>
并在后面更改管理信息中心的页面模板attr
你也可以使用is_front_page()函数
<?php if( is_front_page() ) { ?>
<?php get_template_part('templates/header'); ?>
<?php get_template_part('templates/page-about'); ?>
<?php get_template_part('templates/page-services'); ?>
<?php get_template_part('templates/page-portfolio'); ?>
<?php get_template_part('templates/page-contact'); ?>
<?php get_template_part('templates/footer'); ?>
<?php } ?>