您可以使用update_user_meta() 和get_user_meta(), 您可以在其中存储和检索与键和用户相关的值,如\'read_post_\' . $post_id
例如
在…内The Loop, 当您要打印文章时,可以添加一个条件:如果用户具有用户元值\'read_post_\' . $post_id
如果设置为false或not,则可以打印该蓝色圆圈。
if(get_user_meta($user_id, \'read_post_\' . $post_id, true) != ""){
// show the notification
}
打印文章内部时,可以更新该值,因此将其设置为true:
update_user_meta( $user_id, \'read_post_\' . $post_id, true );