php 显示countest投票(短代码)。用法:[fv_contest_votes contest_id = 1]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示countest投票(短代码)。用法:[fv_contest_votes contest_id = 1]相关的知识,希望对你有一定的参考价值。
<?php
// COPY AFTER THIS LINE
// Usage: Total contest votes [fv_contest_votes contest_id=YOUR_ID]
add_shortcode("fv_contest_votes", function($atts) {
if ( empty($atts['contest_id']) ) {
return 'No contest_id!';
}
$count = ModelCompetitors::query()
->where('contest_id', $atts['contest_id'])
->what_fields( array('SUM(`t`.`votes_count`) as votes_count_summary') )
->findVar();
return $count ? $count : 0;
});
以上是关于php 显示countest投票(短代码)。用法:[fv_contest_votes contest_id = 1]的主要内容,如果未能解决你的问题,请参考以下文章
php 用于显示外部文件的短代码
PHP 实例 - AJAX 投票
PHP [Wordpress短代码]显示登录用户的内容
PHP WordPress短代码:仅向注册用户显示内容
php WordPress短代码只会向注册用户显示内容。
php 在app_my_appointments短代码中显示其他字段