分享一些 Typecho 主題開發過程中常用的鉤子函數

57,998 1

以前還在用 Typecho 的時候,就經常自己瞎折騰主題外掛,然後就要經常去 docs.typecho.org 查看關於主題外掛的常用函數。

為了方便更多的開發者和初學者能更好更快捷地學習製作 Typecho 主題,我把這些經常會用到的函數整理了一下,發出來給小夥伴們使用!

圖片

網站名稱

Plain Text
<?php $this->options->title() ?>

網站網址

Plain Text
<?php $this->options->siteUrl(); ?>

完整路徑標題

Plain Text
<?php $this->archiveTitle(' &raquo; ', '', ' | '); ?><?php $this->options->title(); ?>

網站說明

Plain Text
<?php $this->options->description() ?>

模板資料夾地址

Plain Text
<?php $this->options->themeUrl(); ?>

匯入模板資料夾內的 PHP 檔案

Plain Text
<?php $this->need('.php'); ?>

文章或者頁面的作者

Plain Text
<?php $this->author(); ?>

作者頭像

Plain Text
<?php $this->author->gravatar('40') ?>

此處輸出的是完整的 img 標籤,40 是頭像的寬度和高度。

該文作者全部文章列表連結

Plain Text
<?php $this->author->permalink (); ?>

該文作者個人主頁連結

Plain Text
<?php $this->author->url(); ?>

該文作者的電子郵件地址

Plain Text
<?php $this->author->mail(); ?>

上一篇與下一篇呼叫程式碼

Plain Text
<?php $this->thePrev(); ?><?php $this->theNext(); ?>

判斷是否為首頁,輸出相關內容

Plain Text
<?php if ($this->is('index')): ?>

// 首頁輸出內容

Plain Text
<?php else: ?>

// 不是首頁輸出內容

Plain Text
<?php endif; ?>

文章或頁面,評論數目

Plain Text
<?php $this->commentsNum('No Comments', '1 Comment', '%d Comments'); ?>

擷取部分文章(首頁每篇文章顯示摘要)

Plain Text
<?php $this->excerpt(200, '...'); ?>

200 是擷取的字數。

呼叫自訂欄位

Plain Text
<?php $this->fields->fieldName ?>

RSS 地址

取得最新 post

Plain Text
<?php $this->widget('Widget_Contents_Post_Recent', 'pageSize=8&type=category')->parse('<li><a href="{permalink}">{title}</a></li>'); ?>

純文字分類名稱,不帶連結

Plain Text
<?php $this->category(',', false); ?>

取得文章分類列表

Plain Text
<ul><?php $this->widget('Widget_Archive@indexyc', 'pageSize=8&type=category', 'mid=1')->parse('<li><a href="{permalink}" title="{title}">{title}</a></li>'); ?></ul>

取得某分類 post

Plain Text
<ul><?php $this->widget('Widget_Archive@indexyc', 'pageSize=8&type=category', 'mid=1')->parse('<li><a href="{permalink}" title="{title}">{title}</a></li>'); ?></ul>

取得最新評論列表

Plain Text
<ul>    <?php $this->widget('Widget_Comments_Recent')->to($comments); ?>    <?php while($comments->next()): ?>        <li><a href="<?php $comments->permalink(); ?>">        <?php $comments->author(false); ?></a>:        <?php $comments->excerpt(50, '...'); ?></li>    <?php endwhile; ?></ul>

首頁取得最新文章限制條數

Plain Text
<?php while ($this->next()): ?><?php if ($this->sequence <= 3): ?>html<?php endif; ?><?php endwhile; ?>

取得最新評論列表第二個版本,只顯示訪客評論不顯示博主(也就是作者或者說自己發的評論)

Plain Text
<?php $this->widget('Widget_Comments_Recent','ignoreAuthor=true')->to($comments); ?>    <?php while($comments->next()): ?>    <li><a href="<?php $comments->permalink(); ?>">    <?php $comments->author(false); ?></a>:    <?php $comments->excerpt(50, '...'); ?></li><?php endwhile; ?>

取得文章時間歸檔

Plain Text
<ul>    <?php $this->widget('Widget_Contents_Post_Date', 'type=month&format=F Y')                ->parse('<li><a href="{permalink}">{date}</a></li>'); ?></ul>

取得標籤集合,也就是標籤雲

Plain Text
<?php $this->widget('Widget_Metas_Tag_Cloud', 'ignoreZeroCount=1&limit=28')->to($tags); ?><?php while($tags->next()): ?><a href="<?php $tags->permalink(); ?>" class="size-<?php $tags->split(5, 10, 20, 30); ?>"><?php $tags->name(); ?></a><?php endwhile; ?>

呼叫該文相關文章列表

Plain Text
<?php $this->related(5)->to($relatedPosts); ?>    <?php if ($relatedPosts->have()): ?>    <?php while ($relatedPosts->next()): ?>        <li><a href="<?php $relatedPosts->permalink(); ?>" title="<?php $relatedPosts->title(); ?>"><?php $relatedPosts->title(); ?></a></li>    <?php endwhile; ?>    <?php else : ?>        <li>無相關文章</li>    <?php endif; ?>

隱藏 head 區域的程式版本和模板名稱

Plain Text
<?php $this->header("generator=&template="); ?>

取得讀者牆

Plain Text
<?php$period = time() - 999592000; // 時段: 30 天, 單位: 秒$counts = Typecho_Db::get()->fetchAll(Typecho_Db::get()->select('COUNT(author) AS cnt','author', 'url', 'mail')->from('table.comments')->where('created > ?', $period )->where('status = ?', 'approved')->where('type = ?', 'comment')->where('authorId = ?', '0')->group('author')->order('cnt', Typecho_Db::SORT_DESC)->limit(25));$mostactive = '';$avatar_path = 'http://www.gravatar.com/avatar/';foreach ($counts as $count) {  $avatar = $avatar_path . md5(strtolower($count['mail'])) . '.jpg';  $c_url = $count['url']; if ( !$c_url ) $c_url = Helper::options()->siteUrl;  $mostactive .= "<a href='" . $c_url . "' title='" . $count['author'] . " (參與" . $count['cnt'] . "次互動)' target='_blank'><img src='" . $avatar . "' alt='" . $count['author'] . "的頭像' class='avatar' width='32' height='32' /></a>\n";}echo $mostactive;?>

登入與未登入使用者展示不同內容

Plain Text
<?php if($this->user->hasLogin()): ?>

登入可見

Plain Text
<?php else: ?>

未登入和登入均可見

Plain Text
<?php endif; ?>

評論

(1)
  1. Firefox 83 Windows 10

    重返独立博客,写板子,查文章,谢谢分享。

發佈評論