我正在使用WordPress插件WP-PostViews来显示帖子的观看次数。我正在使用此代码并且效果很好:
<?php if(function_exists('the_views')) { the_views(); }?>
我想要做的是将这些数量的帖子视图用作变量,但我无法使其正常工作。到目前为止,我已经尝试过:
<?php if(function_exists('the_views')) { $variable = the_views(); } ?>
和
<?php if(function_exists('the_views')) { $variable = the_views(); } else { $var = 0; } ?>
到目前为止没有成功。有没有人有建议?
答案 0 :(得分:4)
默认情况下the_views()
回声而不是返回。您可以通过将第一个参数设置为false
来获得返回。例如:
<?php if(function_exists('the_views')) { $variable = the_views(false); } ?>