您当前的位置: 首页 > 慢生活 > 程序人生 网站首页程序人生
6-6: 获取文章作者、分类、浏览次数等信息(发布时间,所属分类,浏览次数,作者图像,作者名,作者归档页地址)
发布时间:2023-03-29 22:24:20编辑:雪饮阅读()
获取文章发布时间
<?php the_date('Y-m-d');?>
获取文章所属分类
<?php the_category(',');?>
获取文章浏览次数
参见http://www.gaojiupan.cn/manshenghuo/chengxurensheng/5308.html
获取作者图像及作者名
<?php echo get_avatar(get_the_author_meta('ID'),24);the_author();?>
wordpress后台好像不能直接修改作者图像
获取作者归档页地址
<?php echo get_author_posts_url(get_the_author_meta('ID'));?>
关键字词:发布时间,所属分类,浏览次数,作者图像,作者名,作者归档页地址