我正在尝试制作自定义页面模板,其中我显示自定义样式的帖子,我不知道如何在此自定义页面模板中显示帖子,这里我附加了自定义页面模板的简单代码。< / p>
<?php
/*
Template Name: Custom Template
*/
get_header();
//custom code for post is here
get_footer();
?>
答案 0 :(得分:2)
您可以随时使用与此类似的页面模板,并在此处充分利用代码,并使用我们自己的类和您所指的样式进行编写:
<?php
/*
Template Name: Custom Template
*/
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<header class="entry-header">
<?php the_post_thumbnail(); ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry-content -->
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
答案 1 :(得分:1)
您可以使用WP_Query()
向页面模板添加自定义循环。您可以在WordPress Codex中找到一些示例:https://codex.wordpress.org/Class_Reference/WP_Query