wordpress如何设置文章模板

来源:undefined 2024-12-16 17:49:49 1006

如何在 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:添加模板代码

在您创建的文件中,添加以下代码:

1

2

3

4

5

<?php

/*

Template Name: My Custom Template

*/

?>

登录后复制

替换 "My Custom Template" 为您想要的模板名称。

步骤 3:自定义模板

在 和 之间添加您想要在模板中显示的代码。 自定义内容、边栏、页眉和页脚,以创建您需要的独特布局。

步骤 4:将模板分配给文章

编辑您要使用该模板的文章。 在侧边栏的 "属性" 部分,选择您创建的模板。

示例

要创建一个名为 "Blog 模板" 的模板,请遵循以下步骤:

创建一个名为 "template-blog.php" 的文件。 添加以下代码:

1

2

3

4

5

<?php

/*

Template Name: Blog Template

*/

?>

登录后复制
在 和 之间添加以下代码以显示文章列表:

1

2

3

4

5

6

7

8

9

10

11

12

<?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();

?>

登录后复制

现在,您已经为 WordPress 文章创建了一个自定义模板。

以上就是wordpress如何设置文章模板的详细内容,更多请关注php中文网其它相关文章!

-->

最新文章