其他页面:
```
<?php
/*
template name:一般页面
*/
?>
```
显示文章作者:
```
<?php the_post(); echo get_the_author(); rewind_posts(); ?>
```
现在作者和作者文章集:
```
<?php
the_post(); // queue first post
$author_id = get_the_author_meta('ID');
$curauth = get_user_by('ID', $author_id);
$user_nicename = $curauth->user_nicename;
$display_name = $curauth->display_name;
rewind_posts(); // rewind the loop
?>
<a href="<?php echo get_author_posts_url($author_id, $user_nicename); ?>"><?php echo $display_name; ?></a> 在 <?php the_time('Y年n月j日, G:i:s'); ?> 发布 / 分类:
<?php
$categories = get_the_category();
$separator = ", ";
$output = '';
if($categories){
foreach ($categories as $category){
$output .= '<a href="' . get_category_link($category->term_id). '">'. $category->cat_name . '</a>'. $separator;
}
echo trim($output, $separator);
}
?>
```
参考:
[https://wp-mix.com/wordpress-get-author-outside-loop/](https://wp-mix.com/wordpress-get-author-outside-loop/)
分享按钮:
[https://sharethis.com/](https://sharethis.com/)
- WordPress平台的网站开发
- 电商主题开发
- WooCommerce主题开发优化部分
- 首页开发
- WooCommerce
- 判断用户是否登录
- WordPress Menu
- WooCommerce PayPal Checkout Gateway
- 页面和文章
- 调用产品和文章
- 判断属于哪个页面
- 相关文章
- 消除文章分享按钮集底部的文字
- wordpress主题模板和主题开发
- wordpress主题准备
- wordpress主题文件结构
- 豪源主题
- WooCommerce SEO
- 插件开发
- wordpress二次开发
- theme基本显示
- menu调用
- 分拆为header.php和footer.php
- 页面、文章样式选择显示
- 面包屑导航 Breadcrumb
- 特色图
- 阅读次数统计
- 分页功能
- Advanced Custom Fields
- Custom Post Type UI
- post type
- 小工具
- 小工具调用
- shortcode
- 文章循环输出
- 标题和文章限制字数输出显示
- WordPress主題theme1开发
- wordpress搭建多站点
- wordpress常用函數
- wordpress循环代码
- Woocommerce
- Woocommerce支持
- WordPress插件开发
- wordpress会员插件
- WordPress插件使用
- WordPress插件集
- WordPress的核心
- Wordpress原理
- Wordpress要点
- WordPress网站搬家
- WPML
- 服务器
- Cloud 9
- test
- 网站