بسم الله والصلاة والسلام على رسول الله, في هذا الموضوع إن شاء الله سنرى كيف نضيف عدد مرات مشاهدة المقالة أو النقر على عنوان المقالة أو الدخول إلى المقالة كلها تحمل نفس المعنى والمغزى, أولا نحرر ملف functions.php الخاص بالقالب المستعمل ونضع بداخله الكود التالي:
function ben_getPostViews($postID){
$count_key = 'get_post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
return "عدد المشاهدات 0";
}
return 'عدد المشاهدات ' .$count;
}
function ben_setPostViews($postID) {
$count_key = 'get_post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
- إقرأ الموضوع كاملا …