WordPress从the_views发布视图作为变量

时间:2014-05-10 13:49:48

标签: php wordpress function variables

我正在使用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; } ?>

到目前为止没有成功。有没有人有建议?

1 个答案:

答案 0 :(得分:4)

默认情况下the_views()回声而不是返回。您可以通过将第一个参数设置为false来获得返回。例如:

<?php if(function_exists('the_views')) { $variable = the_views(false); } ?>