WP主題製作常用標籤程式碼
阿新 • • 發佈:2019-01-18
WordPress模板結構
style.css : CSS檔案
index.php : 主頁模板
archive.php : Archive/Category模板
404.php : Not Found 錯誤頁模板
comments.php : 留言/回覆模板
footer.php : Footer模板
header.php : Header模板
sidebar.php : 側欄模板
page.php : 內容頁(Page)模板
single.php : 內容頁(Post)模板
searchform.php : 搜尋表單模板
search.php : 搜尋結果模板
-----------------------------------------------------------------------------------
基本條件判斷
is_home() : 是否為主頁
is_single() : 是否為內容頁(Post)
is_page() : 是否為內容頁(Page)
is_category() : 是否為Category/Archive頁
is_tag() : 是否為Tag存檔頁
is_date() : 是否為指定日期存檔頁
is_year() : 是否為指定年份存檔頁
is_month() : 是否為指定月份存檔頁
is_day() : 是否為指定日存檔頁
is_time() : 是否為指定時間存檔頁
is_archive() : 是否為存檔頁
is_search() : 是否為搜尋結果頁
is_404() : 是否為 “HTTP 404: Not Found” 錯誤頁
is_paged() : 主頁/Category/Archive頁是否以多頁顯示
-----------------------------------------------------------------------------------
style.css頭部主題註釋文字
1 |
/* |
2 |
Theme Name: 1990c |
3 |
Theme URI: http://www.1990c.com |
4 |
Author: Lin Yunpeng |
5 |
Author URI: http://www.1990c.com |
6 |
Description: Lin Yunpeng's theme |
7 |
Version: 1.0 |
8 |
Tags: white,simple |
9 |
*/ |
-----------------------------------------------------------------------------------
header.php常用標籤
1 |
<pre>style.css路徑<?php bloginfo(
|