wordpress php调用页面模板问题.
我用建了一一个PHP文件来获取txt文本,但是除了文字就空白页。所以想套用一下页面的模板。之前一个主题在编辑那里找到独立页面的代码。直接把这个代码放进去,就可以了。直接显示在标题下方内容地方。但是换了一个主题后,重新使用新主题下的独立页面代码,这个php调用的内容。要么显示在标题上面,要么现在内容下面。
<?php get_template_part( 'template-parts/content', 'page' ); ?>
这一条就是标题内容页面的代码,怎么放到里面。
放到他上面跑到标题上面,放到他下面就跑到内容页底下了。
<?php get_template_part( 'template-parts/content', 'page' ); ?>
这一条就是标题内容页面的代码,怎么放到里面。
放到他上面跑到标题上面,放到他下面就跑到内容页底下了。
2 个回复
2018新用户 - 30入门
赞同来自:
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Relativity
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; // End of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>
--------------------------------------------------------------------------
这是page.php
2018新用户 - 30入门
赞同来自:
各位帮帮忙吧。