Skip to content

Instantly share code, notes, and snippets.

@max-kk
Last active October 22, 2017 10:55
Show Gist options
  • Save max-kk/7fa73017085e51fc13623de56d3682b2 to your computer and use it in GitHub Desktop.
Save max-kk/7fa73017085e51fc13623de56d3682b2 to your computer and use it in GitHub Desktop.
FV - shortde for last contest
<?php
add_shortcode('last_fv', function(){
$contest = ModelContest::query()
->limit(1)
->sort_by('date_finish', 'DESC')
->findRow();
if (!$contest) {
return 'No contest!';
}
return do_shortcode("[fv id='{$contest->id}' display_winners=true show_opened=true]");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment