如何在访问者数量为 x 后显示模态
How to show a modal after x number of visitors
我正在尝试每 50 个用户弹出一个模式以进行站点调查。我可以很容易地在我需要的页面上创建一个模式,但无法想出一种方法让它只在 x 次访问后显示。谁能指出我正确的方向?
在主题的 functions.php 文件中写入以下代码:
function getPostViews($postID){
$count_key = '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 setPostViews($postID) {
$count_key = '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);
}
}
// Remove issues with prefetching adding extra views
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
这部分代码将设置 post 视图。只需将此代码段放入您的文件中即可。
<?php
setPostViews(get_the_ID());
?>
下面的代码显示了您 post 内的观看次数。所以,写这样的代码:
<?php
if(getPostViews(get_the_ID()) >= 'x') {
// Write your popup code here
}
?>
我正在尝试每 50 个用户弹出一个模式以进行站点调查。我可以很容易地在我需要的页面上创建一个模式,但无法想出一种方法让它只在 x 次访问后显示。谁能指出我正确的方向?
在主题的 functions.php 文件中写入以下代码:
function getPostViews($postID){
$count_key = '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 setPostViews($postID) {
$count_key = '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);
}
}
// Remove issues with prefetching adding extra views
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
这部分代码将设置 post 视图。只需将此代码段放入您的文件中即可。
<?php
setPostViews(get_the_ID());
?>
下面的代码显示了您 post 内的观看次数。所以,写这样的代码:
<?php
if(getPostViews(get_the_ID()) >= 'x') {
// Write your popup code here
}
?>