首頁 › Wordpress自訂欄位的使用
Wordpress自訂欄位的使用
在Wordpress發表文章的地方有個叫自訂欄位的東東,
一直讓我很好奇那是啥…
這次因為想要把花水木的流水帳弄成像日記一樣,
想要有個[天氣]的欄位,
所以就去稍微研究了一下。知道有個使用自訂欄位的方式。
不過這方式還滿爛的,所以希望有會寫程式的朋友多多指教啊!
1.首先,寫外掛檔, 然後上傳-啟用外掛
<?php
/*
Plugin Name: Post-Custom
Plugin URI:
Description:
Version: 0.0
Author:
Author URI:
*/
function the_whether($text_whether='the_whether', $display=true) {
$the_whether = post_custom('the_whether');
if( $display ) {
echo $text_whether . $the_whether;
} else {
return $the_whether;
}
}
?>
2.在模板中想要出現這個欄位內容的地方貼上
<? if(post_custom('the_whether')) { ?>
<?php the_whether('天氣 ', true); ?>
<?php } ?>
3.發表文章時在自訂欄位加一個the_whether, 欄位內容打天氣,像這樣
- 人氣(986)
最新回應
- 最近發現國外有一套針對Drupal的佈景主題產生器,還不錯
3 天 18 小時前 - 您好:
冒昧打擾您了,
目前我有個專案正在進行,
很希望與
2 周 6 天前 - .............
4 周 3 天前 - Our
9 周 4 天前 - 真是AJAX吗?
16 周 5 天前 - 不好意思
有個問題可以請問你嗎
javascript的基本
22 周 6 天前 - 我工作的公司在找能協助維護一個用Drupal
25 周 6 天前 - lol ,花水木粉絲萬歲~
27 周 49 分鐘前 - 其實在下原本就是花水木的fans啦…只是一直都不敢回文
31 周 1 天前 - 请问,可否发一个license呢
xiang.leau@g
32 周 5 天前
熱門內容
- Plurk2:噗浪插頭的貼紙美化 (13,345)
- [Module] AJAX Comments (7,488)
- [網站易用性] 下拉式選單的迷思 (6,359)
- Plurk2:花水木版圓角作法&原始檔 (6,204)
- Drupal開發用版型 (5,732)
找我聊聊
敲我MSN吧!
若我MSN下班,搞不好在這
或是在這













回應
發表新回應