WordPress主題製作教程4 呼叫指定頁面內容

2022-01-11 12:37:42 字數 925 閱讀 3802

假設頁面page_id=86

$page_id = 86;

echo "內容:".get_post($page_id)->post_content;

其他引數:

post_author

文章作者的編號

post_data

文章發表的日期和時間(yyyy-mm-dd hh-mm-ss)

post_data_gmt

文章發表的格林尼治標準時間(gmt) (yyyy-mm-dd hh-mm-ss)

post_content

文章內容

post_title

文章標題

post_category

文章類別的編號

post_excerpt

文章摘要

post_status

文章狀態(publish|pending|draft|private|static|object|attachment|inherit|future)

comment_status

ping_status

pingback/trackback狀態(open|closed)

post_password

文章密碼

post_name

文章的url巢狀

to_ping

要引用的url鏈結

pinged

引用過的鏈結

post_modified

文章最後修改時間(yyyy-mm-dd hh-mm-ss)

post_modified_gmt

文章最後修改gmt時間(yyyy-mm-dd hh-mm-ss)

post_parent

父級文章編號

guid

post_type

(日誌 | 頁面 | 附件)

WordPress主題製作教程6 常用模版標籤

輸出模板標籤一般有兩種方式 the yourtag 輸出標籤值和get the yourtag 獲標籤值 通常來說,the yourtag echo get the yourtag 常用模版標籤 bloginfo name 獲取部落格名字 bloginfo template directory 獲取...

wordpress主題修改 製作

懂一點點的html css 主題檔案構成 在開始製作wordpress主題之前,首先得了解wordpress主題到底由哪些檔案構成,你得清楚wordpress程式是怎樣與主題檔案連線的。以下是wordpress預設主題default資料夾下的所有模板檔案 看了上圖,可能你還摸不著頭腦,到底這些檔案是...

WordPress 主題教程 6 側邊欄

側邊欄是從零開始建立 wordpress 主題系列教程的第六篇,這一篇我們主要講解 wordpress 主題的側邊欄,讓你很快掌握它的結構,並能編碼和樣式化它。在開始側邊欄之前,這是現在 index.php 檔案的樣子。第1步 建立 id 為 sidebar 的 div 首先讓我們建立乙個名字為 s...