Last active
October 22, 2017 10:55
-
-
Save max-kk/7fa73017085e51fc13623de56d3682b2 to your computer and use it in GitHub Desktop.
FV - shortde for last contest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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