如何在我的主题中显示网站访问量

时间:2017-05-12 作者:Naser.Sadeghi

我在网站的页脚上有一个列,显示了今天、昨天和所有时间的访问者,如下所示:

<p> Today\'s Views:   <span> <!--?php here comes the related php code ?--> </span></p><br><br>

<p>Yesterday\'s Views:   <span> <!--?php here comes the related php code ?--> </span></p><br><br>

<p>All times Views:   <span> <!--?php here comes the related php code ?--> </span></p><br><br>
因此,我已经安装了wp Statistics 插件和我想使用它的函数。但是,当我尝试使用以下函数之一时,会出现以下错误:

致命错误:在/home/xxxx/public\\u html/wp-content/themes/xxx/footer中调用未定义的函数wp\\u statistics\\u today()。php在线34

<?php echo wp_statistics_today(); ?>
<?php echo wp_statistics_yesterday(); ?>
But when I call <?php echo wp_statistics_useronline(); ?> I get the 正确的结果。

我怎样才能解决这个问题?

请注意I\'m talking about my whole website\'s view count; not a specific post or page.

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

以下是实现预期结果所需的:

<p> Today\'s Views:   <span> <?php echo wp_statistics_visit(\'today\'); ?>  </span></p><br><br>

<p>Yesterday\'s Views:   <span> <?php echo wp_statistics_visit(\'yesterday\'); ?> </span></p><br><br>

<p>All times Views:   <span> <?php echo wp_statistics_visit(\'total\'); ?> </span></p><br><br>

结束