下面这段代码通过Js来检测访客是否收藏本网站:
if (window.external && ('AddFavorite' in window.external)) { // 当访客将本网站添加到浏览器收藏之后下面的代码会执行 }
将收藏数量统计到数据库,我们可以使用option的api。 利用update_option来更新收藏统计的字段:
$bookmark_count = get_option('bookmark_count'); $bookmark_count++; update_option('bookmark_count', $bookmark_count);
如果要输出收藏的字段,可以使用:
$bookmark_count = get_option('bookmark_count'); echo $bookmark_count;