我想自定义我的个人帖子。下面我举了一个我正在努力实现的例子。我会为此制作自定义帖子模板吗?如果是,我该怎么做?或者我应该加入我的单曲。php?提前谢谢。
我希望我的个人帖子页面是什么样子。我想要两张并排的图片,这是这一页的全宽。文本一张图片是页面的全宽。文本一张图片从页面的左边缘开始,旁边有文本。然后是一张全幅图片。
这是我的单曲。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();
?>
任何见解都会有所帮助。我知道我想要它的样子,只是不知道如何实现它。
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受欢迎。