ที่อยู่
ภาควิชาภาษาศาสตร์ คณะมนุษยศาสตร์ มหาวิทยาลัยเกษตรศาสตร์
อาคารมนุษยศาสตร์ 1 ชั้น 5
เลขที่ 50 ถนนงามวงศ์วาน แขวงลาดยาว เขตจตุจักร กรุงเทพฯ 10900
โทร.
025795566 ต่อ 1517
หรือติดต่อสอบถามเพิ่มเติมได้ทางเฟสบุคของภาควิชา
/*
*
* Post View's Counter
*
*/
add_action('wp_head','ensure_views_counter');
function ensure_views_counter(){
// Only Count On Posts
if(!is_singular('post')){
return false;
}
// Get Post ID
$currentID = get_the_ID();
// Check For Current Views
$totalViews = get_post_meta($currentID, '_post_views_count', true);
// Check If Is Int
if(!is_numeric($totalViews)){
$totalViews = 0;
}
// Increase by 1
$totalViews++;
// Update the total views
update_post_meta($currentID,'_post_views_count', $totalViews);
}