芝麻web文件管理V1.00
编辑当前文件:/www/wwwroot/shphe-en.com/wp-content/plugins/blog2social/includes/B2S/Rating.php
get_var("SELECT COUNT(distinct post_id) FROM {$wpdb->prefix}b2s_posts"); if(in_array($count, array(5,10,15,50,75,100,120,150)) || ($count > 150 && $count % 25 == 0)) { update_option("B2S_SHOW_RATING",array("count" => $count),false); } } } public static function is_visible() { return !! get_option("B2S_SHOW_RATING"); } public static function count() { $option = get_option("B2S_SHOW_RATING"); return $option && isset($option['count']) ? $option['count'] : 0; } public static function hide($forever = false) { delete_option("B2S_SHOW_RATING"); if($forever) { update_option("B2S_HIDE_RATING",true,false); } } }