[WordPress]donovan主题一些小修改
4月3日更新• wordpress•教程•阅读:1,902次
修改了使用文章更新时间/获取当前文章的标签/分类/添加了阅读量统计
先看效果如下
主题目录donovan/template-parts/
content-excerpt.php和content-single.php,找到如下位置:
<header class="entry-header">
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<!--以下是修改内容-->
<?php the_modified_time('n月j日'); ?>更新•<!--<?php donovan_entry_meta(); ?>--><?php the_tags( ' ', ' • ', '' ); ?>•<?php the_category( ' ', ' • ', '' ); ?>•阅读:<?php post_views('', '次'); ?>
<!--以上是修改内容-->
</header>
修改了文章的更新时间,显示标签/显示分类,都是带链接的,把作者去掉了(不希望被看到作者,也就是可能被发现用户名,导致账号被黑)。其中的阅读量,还需要在主题目录下functions.php,在文末,添加如下内容
/* 访问计数 */
function record_visitors()
{
if (is_singular())
{
global $post;
$post_ID = $post->ID;
if($post_ID)
{
$post_views = (int)get_post_meta($post_ID, 'views', true);
if(!update_post_meta($post_ID, 'views', ($post_views+1)))
{
add_post_meta($post_ID, 'views', 1, true);
}
}
}
}
add_action('wp_head', 'record_visitors');
/// 函数名称:post_views
/// 函数作用:取得文章的阅读次数
function post_views($before = '(点击 ', $after = ' 次)', $echo = 1)
{
global $post;
$post_ID = $post->ID;
$views = (int)get_post_meta($post_ID, 'views', true);
if ($echo) echo $before, number_format($views), $after;
else return $views;
}