http://wordpress.org/extend/plugins/baw-post-views-count/screenshots/
我已经安装并激活了“Post Views Count”插件,但是当我像这样使用短代码 [post_view] 时,它并不好......
<li><em>[most_view]</em></li>
或者:
<li><em><?php [most_view] ?></em></li>
http://wordpress.org/extend/plugins/baw-post-views-count/screenshots/
我已经安装并激活了“Post Views Count”插件,但是当我像这样使用短代码 [post_view] 时,它并不好......
<li><em>[most_view]</em></li>
或者:
<li><em><?php [most_view] ?></em></li>
你激活插件了吗?
[most_view] 必须通过管理员的文本编辑器放置在帖子或页面中。看起来你正在制作模板?
[most_view] 是短代码,如果您想在模板中添加帖子计数,则必须放在帖子内容中,请使用:
<?php bawpvc_views_sc(); ?>
如果您想在 PHP 代码中使用简码,您应该检查 Wordpress 的 do_shortcode() 函数:https ://developer.wordpress.org/reference/functions/do_shortcode/
使用您提供的简码的示例:
<li><em><?php echo do_shortcode( '[most_view]' ); ?></em></li>