加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
author.php 493 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhx 提交于 2017-10-19 12:54 . init
<?php
get_header();
global $wp_query;
$curauth = $wp_query->get_queried_object();
?>
<div class="content-wrap">
<div class="content">
<?php
$pagedtext = '';
if( $paged && $paged > 1 ){
$pagedtext = ' <small>'.__('第', 'haoui').$paged.__('页', 'haoui').'</small>';
}
echo '<h1 class="title"><strong>'.$curauth->display_name.__('的文章', 'haoui').'</strong>'.$pagedtext.'</h1>';
get_template_part( 'excerpt' );
?>
</div>
</div>
<?php get_sidebar(); get_footer(); ?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化