如何在 wordpress 中设置文章模板?创建一个名为 “template-name.php” 的新文件,其中 “template-name” 是您想要的模板名称。添加代码 “template name: my custom template”,其中 “my custom template” 是您想要的模板名称。自定义模板内容,添加您想要显示的代码。编辑文章,在 “属性” 部分将模板分配给文章。
如何在 WordPress 中设置文章模板
步骤 1:创建文章模板文件
- 在您的主题文件夹中创建一个新的文件。
- 将文件命名为 “template-name.php”,其中 “template-name” 是您想要的模板名称。例如: “template-blog.php”。
步骤 2:添加模板代码
- 在您创建的文件中,添加以下代码:
<code class="php"><?php /* Template Name: My Custom Template */ ?></code>
登录后复制
替换 “My Custom Template” 为您想要的模板名称。
步骤 3:自定义模板
- 在
<?php get_header(); ?>
和<?php get_footer(); ?>
之间添加您想要在模板中显示的代码。 - 自定义内容、边栏、页眉和页脚,以创建您需要的独特布局。
步骤 4:将模板分配给文章
- 编辑您要使用该模板的文章。
- 在侧边栏的 “属性” 部分,选择您创建的模板。
示例
要创建一个名为 “Blog 模板” 的模板,请遵循以下步骤:
- 创建一个名为 “template-blog.php” 的文件。
- 添加以下代码:
<code class="php"><?php /* Template Name: Blog Template */ ?></code>
登录后复制
- 在
<?php get_header(); ?>
和<?php get_footer(); ?>
之间添加以下代码以显示文章列表:
<code class="php"><?php $paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; $args = array( 'post_type' => 'post', 'paged' => $paged, ); $query = new WP_Query( $args ); while ( $query->have_posts() ) : $query->the_post(); get_template_part( 'template-parts/content', get_post_format() ); endwhile; wp_reset_postdata(); ?></code>
登录后复制
现在,您已经为 WordPress 文章创建了一个自定义模板。
以上就是wordpress如何设置文章模板的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:momo,转转请注明出处:https://www.dingdanghao.com/article/354534.html