Add birthdays to core
This commit is contained in:
76
templates/birthdays.php
Normal file
76
templates/birthdays.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/**
|
||||
* Birthdays
|
||||
*
|
||||
* @author ThemeBoy
|
||||
* @package SportsPress_Birthdays
|
||||
* @version 1.9
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
$html5 = current_theme_supports( 'html5', 'gallery' );
|
||||
$defaults = array(
|
||||
'date' => 'day',
|
||||
'itemtag' => 'dl',
|
||||
'icontag' => 'dt',
|
||||
'captiontag' => 'dd',
|
||||
'size' => 'sportspress-fit-medium',
|
||||
'show_player_birthday' => get_option( 'sportspress_player_show_birthday', 'no' ) == 'yes' ? true : false,
|
||||
'show_staff_birthday' => get_option( 'sportspress_staff_show_birthday', 'no' ) == 'yes' ? true : false,
|
||||
'link_players' => get_option( 'sportspress_link_players', 'yes' ) == 'yes' ? true : false,
|
||||
'link_staff' => get_option( 'sportspress_link_staff', 'yes' ) == 'yes' ? true : false,
|
||||
);
|
||||
|
||||
extract( $defaults, EXTR_SKIP );
|
||||
|
||||
$args = array(
|
||||
'post_type' => array( 'sp_player', 'sp_staff' ),
|
||||
'numberposts' => -1,
|
||||
'posts_per_page' => -1,
|
||||
'orderby' => 'date',
|
||||
'order' => 'ASC',
|
||||
'monthnum' => date('n'),
|
||||
);
|
||||
|
||||
if ( $date == 'day' ) {
|
||||
$args['day'] = date('j');
|
||||
}
|
||||
|
||||
$posts = get_posts( $args );
|
||||
|
||||
foreach ( $posts as $post ) {
|
||||
echo '<div class="sp-template sp-template-birthdays sp-template-birthday-gallery sp-template-gallery">';
|
||||
|
||||
if ( 'sp_staff' == $post->post_type ) {
|
||||
$link_posts = $link_staff;
|
||||
$show_birthday = $show_staff_birthday;
|
||||
} else {
|
||||
$link_posts = $link_players;
|
||||
$show_birthday = $show_player_birthday;
|
||||
}
|
||||
|
||||
$birthday = get_the_date( get_option( 'date_format') , $post->ID );
|
||||
|
||||
if ( $show_birthday && $birthday && $group !== $birthday ) {
|
||||
echo '<h4 class="sp-table-caption">' . $birthday . '</h4>';
|
||||
}
|
||||
|
||||
echo '<div class="gallery">';
|
||||
|
||||
$caption = $post->post_title;
|
||||
$caption = trim( $caption );
|
||||
|
||||
sp_get_template( 'player-gallery-thumbnail.php', array(
|
||||
'id' => $post->ID,
|
||||
'itemtag' => $itemtag,
|
||||
'icontag' => $icontag,
|
||||
'captiontag' => $captiontag,
|
||||
'caption' => $caption,
|
||||
'size' => $size,
|
||||
'link_posts' => $link_posts,
|
||||
) );
|
||||
|
||||
echo '<br style="clear: both;" />';
|
||||
echo "</div></div>\n";
|
||||
}
|
||||
Reference in New Issue
Block a user