如何在 WordPress 中設定文章模板?建立一個名為 "template-name.php" 的新文件,其中 "template-name" 是您想要的範本名稱。新增程式碼 "Template Name: My Custom Template",其中 "My Custom Template" 是您想要的範本名稱。自訂模板內容,新增您想要顯示的程式碼。編輯文章,在 "屬性" 部分將模板指派給文章。
如何在WordPress 中設定文章範本
步驟1:建立文章範本檔案
步驟2:新增範本程式碼
<code class="php"><?php /* Template Name: My Custom Template */ ?></code>
替換"My Custom Template" 為您想要的模板名稱。
步驟3:自訂範本
<?php get_header(); ?>
和< ;?php get_footer(); ?>
之間加入您想要在範本中顯示的程式碼。 步驟 4:將範本指派給文章
範例
要建立一個名為"Blog 模板" 的模板,請遵循下列步驟:
<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如何設定文章模板的詳細內容。更多資訊請關注PHP中文網其他相關文章!