使视图计入弹出窗口帖子

时间:2012-04-05 作者:Pollux Khafra

我使用SimpleModel允许用户单击我主页上的帖子摘录,并弹出一个显示完整帖子的框。然而,当这种情况发生时,它并不代表文章的实际视图。有没有办法让wordpress将其视为一种视图?我正在使用wp-postviews 跟踪视图计数。

1 个回复
最合适的回答,由SO网友:onetrickpony 整理而成

显然,插件在wp_head 挂钩:

add_action(\'wp_head\', \'process_postviews\');
所以一定要打电话wp_head() 在弹出框中,或者如果不能这样做(弹出框不是html文档),则直接调用该函数,如:

if(function_exists(\'process_postviews\'))
  process_postviews();

// the_content();  ?

结束

相关推荐

使用Get_Posts向每隔一个帖子添加类

我目前正在使用这个小循环来显示使用“事件”自定义帖子类型的帖子列表<?php global $post; // required $args = array(\'post_type\' => \'events\'); $custom_posts = get_posts($args); foreach($custom_posts as $post) : setup_postdata($post); ?> &