2 Star 3 Fork 0

gyjcode/wp-theme-qgg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
author.php 917 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* 作者页面模板
*/
get_header();
global $wp_query;
$curauth = $wp_query->get_queried_object();
?>
<section class="container">
<div class="content-wrapper">
<div class="content">
<!-- 作者介绍 -->
<div class="module author-title site-style-border-radius">
<div class="avatar"><?php echo _get_avatar($curauth->ID, $curauth->user_email) ?></div>
<h1 class="name site-style-color"><?php echo $curauth->display_name ?> 的文章</h1>
<div class="desc"><?php echo get_the_author_meta('description', $curauth->ID) ?></div>
</div>
<!-- 文章列表 -->
<?php
_module_loader('module_posts_excerpt_new');
wp_reset_query();
?>
</div>
</div>
<?php get_sidebar() ?>
</section>
<?php get_footer();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/gyjcode/wp-theme-qgg.git
git@gitee.com:gyjcode/wp-theme-qgg.git
gyjcode
wp-theme-qgg
wp-theme-qgg
master

搜索帮助