我假设你正在寻找一个条件来检查你是否在帖子页面上。
您可以使用is_single()
:
if (is_single()) {
// Update your post views here
}
如果您坚持使用过滤器或挂钩,您可以使用
the_content
过滤器:
add_filter( \'the_content\', \'update_post_views\' );
function update_post_views($content){
if (is_single()) {
$id = get_the_ID();
// Now update your post\'s views
}
return $content;
}