创建自定义帖子模板

时间:2017-01-01 作者:user6738171

我想自定义我的个人帖子。下面我举了一个我正在努力实现的例子。我会为此制作自定义帖子模板吗?如果是,我该怎么做?或者我应该加入我的单曲。php?提前谢谢。

我希望我的个人帖子页面是什么样子。我想要两张并排的图片,这是这一页的全宽。文本一张图片是页面的全宽。文本一张图片从页面的左边缘开始,旁边有文本。然后是一张全幅图片。enter image description here

这是我的单曲。php

<?php
get_header();
the_post_thumbnail(\'banner-image\'); 
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<article class="post">

<?php wpb_set_post_views(get_the_ID()); ?>    
    <div class="post-info">
    <h1 class="post-title"><?php the_title(); ?></h1>
   <h2 class="post-date"><?php echo strip_tags(get_the_term_list( $post->ID, \'location\', \'Location: \', \', \', \' • \' ));?><?php the_date(\'F m, Y\'); ?></h2>

    </div>
    <div class="post-content"><?php the_content(); ?></div>

<?php comments_template(); ?>
</article>
<?php endwhile;
else :
echo \'<p>No content found</p>\';
endif;
get_footer();

?>
任何见解都会有所帮助。我知道我想要它的样子,只是不知道如何实现它。

2 个回复
SO网友:prosti

通常我会Custom Post Type.因此,如果创建自定义帖子类型moon 您将拥有创建single-moon.php 文件

在那里,您将创建您所解释的组织。这将您与常规帖子区分开。

事实上,你需要moon CPT和向自定义帖子类型添加自定义字段。acf或cmb2都适合您。

我不喜欢帖子格式,以下是2017年青少年的表现

add_theme_support( \'post-formats\', array(
    \'aside\',
    \'image\',
    \'video\',
    \'quote\',
    \'link\',
    \'gallery\',
    \'audio\',
) );
因为他们有一天in 还有一天out. 我认为他们不如CPT受欢迎。

SO网友:BenB

从wordpress 4.7开始,包括“post”在内的任何帖子类型都支持页面模板。因此,您可以创建一个页面模板,并在您想要的帖子中使用它。https://developer.wordpress.org/themes/template-files-section/page-templates/

相关推荐

是否可以取消对特定帖子类型的POSTS_PER_PAGE限制?

我想知道我是否可以取消特定帖子类型的posts\\u per\\u页面限制。在存档中。php页面我显示不同的帖子类型,对于特定的“出版物”帖子类型,我想显示所有帖子。我如何在不影响传统“post”类型的情况下实现这一点?