discuz個人空間主題列表 圖片模式實現方法

來源:互聯網
上載者:User

標籤:discuz   style   blog   http   io   ar   sp   for   strong   

discuz X3空間主題列表 圖片展現模式,discuz實現個人空間主題列表調用圖片模式,discuz home圖片列表 

如果需要實現該呈現方式,我們需要首先瞭解discuz封面圖片儲存原理:
discuz沒有將主題列表封面路徑存在資料表中,只是在pre_forum_thread表中存了一個cover標識。然後用getthreadcover 函數調取,diy調用的圖片也會產生縮圖,可以設定縮圖的品質。
封面圖片儲存路徑格式:data/attachment/forum/threadcover/43/ec/81.jpg

getthreadcover 函數:

function getthreadcover($tid, $cover = 0, $getfilename = 0) {  global $_G;  if(empty($tid)) {    return ‘‘;  }  $coverpath = ‘‘;  $covername = ‘threadcover/‘.substr(md5($tid), 0, 2).‘/‘.substr(md5($tid), 2, 2).‘/‘.$tid.‘.jpg‘;  if($getfilename) {    return $covername;  }  if($cover) {    $coverpath = ($cover < 0 ? $_G[‘setting‘][‘ftp‘][‘attachurl‘] : $_G[‘setting‘][‘attachurl‘]).‘forum/‘.$covername;  }  return $coverpath;}檔案路徑:/source/function/function_forum.php

  

實現方法:
修改:/source/language/home/lang_template.php
添加like 喜歡或查看

修改:/template/default/home/space_thread.htm
處理封面圖:

{eval   $covername = ‘threadcover/‘.substr(md5($thread[tid]), 0, 2).‘/‘.substr(md5($thread[tid]), 2, 2).‘/‘.$thread[tid].‘.jpg‘;    $coverpath = ($cover < 0 ? $_G[‘setting‘][‘ftp‘][‘attachurl‘] : $_G[‘setting‘][‘attachurl‘]).‘forum/‘.$covername;}圖片列表<li style="width: 227px;  left: 0px; top: 0px;float:left;">  <div class="c cl">  <a class="z" title="$thread[subject]" onclick="atarget(this)" href="forum.php?mod=viewthread&tid=$thread[tid]">  <img width="203" alt="$thread[subject]" src="{eval echo $coverpath;}">  </a>  </div>  <h3 class="xw0">  <a href="forum.php?mod=viewthread&tid=$thread[tid]" onclick="atarget(this)" target="_blank" {if $thread[‘displayorder‘] == -1}class="recy"{/if}>$thread[subject]</a>    </h3>  <div class="auth cl">  <cite class="xg1 y">  {lang like}: <em>$thread[views]</em>   {lang reply}: <a title="0 回複" href="forum.php?mod=viewthread&tid=$thread[tid]">$thread[replies]</a>  </cite>  <a href="home.php?mod=space&uid=$thread[authorid]" target="_blank">$thread[author]</a>$thread[dateline]</div></li>

  

 

下載檔案 (已下載 119 次)點擊這裡下載檔案: homepic.zip

discuz個人空間主題列表 圖片模式實現方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.