您在這裡
使用者登入
最新文章
回應
3 年 5 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
6 年 6 個月 之前
你是想要定義怎樣的
你是想要定義怎樣的結果呢?可以說說看,比較具體。
一般而言,只能調整設定,不然就額外安裝模組。
请大大看一下这个网
请大大看一下这个网站 上的显示样式
http://lend.com.cn/
需要前面是一个小图片,后面不只是显示一个描述.要加上这个节点的特殊信息,如地区信息: 价格信息等
找到一个方法可以通
找到一个方法可以通过search_item来控制,但控制的项目不是很灵活,各位还有没有更好的方法
function phptemplate_search_item($item, $type)
{
$output = '
';
$info = array();
if ($item['type']) {
//Don't output the node type
$info[] = $item['type'];
}
if ($item['user']) {
$info[] = $item['user'];
}
if ($item['date']) {
$info[] = format_date($item['date'], 'small');
}
if (is_array($item['extra'])) {
//Don't output the extra information about the node (comments, attachments)
//$info = array_merge($info, $item['extra']);
}
$output .= '
';
return $output;
}