2 回答
TA贡献1829条经验 获得超13个赞
实际上从另一个主题复制代码 -
主要原因 - 页面未呈现是page.php调用其他主题模板文件来显示内容。
但是 scratch 主题没有内容文件夹,也没有用于渲染内容的额外模板WebPage content-xx.php
//page.php
<?php
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content();?>
<?php endwhile; ?>
</main><!-- #main -->
</div><!-- #primary -->
<!-- <?php get_sidebar(); ?> -->
<?php get_footer(); ?>
最后渲染lorem-imsum页面
TA贡献1780条经验 获得超5个赞
请尝试以下: HEAD:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php wp_head(); ?>
</head>
<body>
功能:使用您的默认主题功能 twentytwelve 或更新版本
页面.php
<div>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>
- 2 回答
- 0 关注
- 72 浏览
添加回答
举报