找到 28 篇与 ALin 相关的结果

Typecho输出最新文章列表

Typecho输出最新文章,文章数量可自定义,一般用于文章页面左/右侧栏<?php \Widget\Contents\Post\Recent::alloc('pageSize=5')->to($new); ?> <?php while ($new->next()): ?> <a href=&...

Typecho输出热门标签/标签云

输出热门标签,一般用于网站左/右侧栏<?php \Widget\Metas\Tag\Cloud::alloc('ignoreZeroCount=1&desc=1&limit=15')->to($tags); ?> <?php while ($tags->next()): ?> <a ...

Typecho输出分类列表

输出所有分类列表,一般用于显示在菜单上<?php \Widget\Metas\Category\Rows::alloc()->to($cates); ?> <?php while ($cates->next()): ?> <a href="<?php $cates->permalink(); ?>" <...

Typecho输出独立页面列表

输出所有独立页面的超链接,一般用于显示在菜单上,或者网站底部<?php \Widget\Contents\Page\Rows::alloc()->to($pages); ?> <?php while ($pages->next()): ?> <a<?php if ($this->is('page',...