MENU

typecho主题常用化码记录(一)

February 5, 2023 • 建站教程阅读设置

修改 Typecho 主题时,需要判断当前用户角色,对于管理员角色,显示内容,可使用如下:

<?php $currGroup = get_object_vars($this->user) ['row']['group'];if ($currGroup == "administrator"): ?> 
若为管理员,显示此区域内容 
<?php else: ?>//else可去 
非管理员,显示此区域内容 
<?php endif;?>


登陆
<?php $this->options->adminUrl('login.php'); ?>

注册
<?php $this->options->adminUrl('register.php'); ?>

站点名称
<?php $this->options->title(); ?>

域名地址
<?php $this->options->siteUrl(); ?>

后台地址
<?php $this->options->adminUrl(); ?>

完整路径地址:文章
<?php $this->archiveTitle(' &raquo; ', '', ' - '); ?&gt;&lt;?php $this->options->title(); ?>

网站说明
<?php $this->options->description(); ?>

模板地址
<?php $this->options->themeUrl(); ?>

作者名字
<?php $this->author(); ?>

当前登陆名
<?php $this->user->screenName(); ?>

退出链接
<a href="<?php $this->options->logoutUrl(); ?>" ><?php _e('退出');?></a>

作者头像
<?php $this->author->gravatar('200') ?>

该作者全部文章链接
<?php $this->author->permalink(); ?>

该文章作者个人主页链接
<?php $this->author->url(); ?>

该文章作者邮箱
<?php $this->author->mail(); ?>

引用模板php文件
<?php $this->need('*.php'); ?>

评论
<?php $this->options->commentsFeedUrl(); ?>
Last Modified: April 15, 2023