Add views counter and style tweaks
This commit is contained in:
@@ -17,8 +17,9 @@ function sportspress_admin_menu( $position ) {
|
||||
$menu[ $position ] = array( '', 'read', 'separator-sportspress', '', 'wp-menu-separator sportspress' );
|
||||
endif;
|
||||
|
||||
// Remove "Positions" link from Media submenu
|
||||
// Remove "Venues" and "Positions" link from Media submenu
|
||||
unset( $submenu['upload.php'][17] );
|
||||
unset( $submenu['upload.php'][18] );
|
||||
|
||||
// Remove "Leagues" link from Players submenu
|
||||
unset( $submenu['edit.php?post_type=sp_player'][15] );
|
||||
|
||||
@@ -1,10 +1,19 @@
|
||||
<?php
|
||||
function sportspress_manage_posts_columns( $defaults ){
|
||||
$defaults['sp_views'] = __( 'Views', 'sportspress' );
|
||||
return $defaults;
|
||||
}
|
||||
add_filter( 'manage_posts_columns', 'sportspress_manage_posts_columns' );
|
||||
|
||||
function sportspress_manage_posts_custom_column( $column, $post_id ) {
|
||||
global $post;
|
||||
switch ( $column ):
|
||||
case 'sp_icon':
|
||||
edit_post_link( get_the_post_thumbnail( $post_id, 'sportspress-icon' ), '', '', $post_id );
|
||||
break;
|
||||
case 'sp_views':
|
||||
echo sportspress_get_post_views( $post_id );
|
||||
break;
|
||||
case 'sp_position':
|
||||
echo get_the_terms( $post_id, 'sp_position' ) ? the_terms( $post_id, 'sp_position' ) : '—';
|
||||
break;
|
||||
@@ -1,67 +1,66 @@
|
||||
<?php
|
||||
function sportspress_the_content( $content ) {
|
||||
|
||||
sportspress_set_post_views( get_the_ID() );
|
||||
|
||||
if ( is_singular( 'sp_event' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$details = sportspress_event_details( $post->ID );
|
||||
$results = sportspress_event_results( $post->ID );
|
||||
$players = sportspress_event_players( $post->ID );
|
||||
$staff = sportspress_event_staff( $post->ID );
|
||||
|
||||
if ( ! empty( $results ) ):
|
||||
$content = $results . $details . $players . $staff . $content;
|
||||
else:
|
||||
$venue = sportspress_event_venue( $post->ID );
|
||||
$content = $details . $venue . $players . $staff . $content;
|
||||
endif;
|
||||
|
||||
$content = apply_filters( 'sportspress_event_content', $content );
|
||||
elseif ( is_singular( 'sp_calendar' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$calendar = sportspress_events_calendar( $post->ID );
|
||||
|
||||
$content = $calendar . $content;
|
||||
|
||||
$content = apply_filters( 'sportspress_calendar_content', $content );
|
||||
elseif ( is_singular( 'sp_team' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$columns = sportspress_team_columns( $post->ID );
|
||||
|
||||
$content = $columns . $content;
|
||||
|
||||
$content = apply_filters( 'sportspress_team_content', $content );
|
||||
elseif ( is_singular( 'sp_table' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$table = sportspress_league_table( $post->ID );
|
||||
|
||||
$content = $table . $content;
|
||||
|
||||
$content = apply_filters( 'sportspress_table_content', $content );
|
||||
elseif ( is_singular( 'sp_list' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$list = sportspress_player_list( $post->ID );
|
||||
|
||||
$content = $list . $content;
|
||||
|
||||
|
||||
$content = apply_filters( 'sportspress_list_content', $content );
|
||||
elseif ( is_singular( 'sp_player' ) && in_the_loop() ):
|
||||
|
||||
global $post;
|
||||
|
||||
$metrics = sportspress_player_metrics( $post->ID );
|
||||
$statistics = sportspress_player_statistics( $post->ID );
|
||||
|
||||
$content = $metrics . $statistics . $content;
|
||||
|
||||
$content = apply_filters( 'sportspress_player_content', $content );
|
||||
endif;
|
||||
|
||||
return $content;
|
||||
}
|
||||
add_filter( 'the_content', 'sportspress_the_content' );
|
||||
add_filter( 'get_the_content', 'sportspress_the_content' );
|
||||
add_filter( 'get_the_content', 'sportspress_the_content' );
|
||||
|
||||
function sportspress_default_event_content( $content ) {
|
||||
$details = sportspress_event_details( get_the_ID() );
|
||||
$results = sportspress_event_results( get_the_ID() );
|
||||
$players = sportspress_event_players( get_the_ID() );
|
||||
$staff = sportspress_event_staff( get_the_ID() );
|
||||
if ( ! empty( $results ) )
|
||||
return $results . $details . $players . $staff . $content;
|
||||
$venue = sportspress_event_venue( get_the_ID() );
|
||||
return $details . $venue . $players . $staff . $content;
|
||||
}
|
||||
add_filter( 'sportspress_event_content', 'sportspress_default_event_content' );
|
||||
|
||||
function sportspress_default_calendar_content( $content ) {
|
||||
$calendar = sportspress_events_calendar( get_the_ID() );
|
||||
return $calendar . $content;
|
||||
}
|
||||
add_filter( 'sportspress_calendar_content', 'sportspress_default_calendar_content' );
|
||||
|
||||
function sportspress_default_team_content( $content ) {
|
||||
$columns = sportspress_team_columns( get_the_ID() );
|
||||
return $columns . $content;
|
||||
}
|
||||
add_filter( 'sportspress_team_content', 'sportspress_default_team_content' );
|
||||
|
||||
function sportspress_default_table_content( $content ) {
|
||||
$table = sportspress_league_table( get_the_ID() );
|
||||
$excerpt = has_excerpt() ? '<p>' . nl2br( get_the_excerpt() ) . '</p>' : '';
|
||||
return $table . $content . $excerpt;
|
||||
}
|
||||
add_filter( 'sportspress_table_content', 'sportspress_default_table_content' );
|
||||
|
||||
function sportspress_default_player_content( $content ) {
|
||||
$metrics = sportspress_player_metrics( get_the_ID() );
|
||||
$statistics = sportspress_player_statistics( get_the_ID() );
|
||||
return $metrics . $statistics . $content;
|
||||
}
|
||||
add_filter( 'sportspress_player_content', 'sportspress_default_player_content' );
|
||||
|
||||
function sportspress_default_list_content( $content ) {
|
||||
$list = sportspress_player_list( get_the_ID() );
|
||||
return $list . $content;
|
||||
}
|
||||
add_filter( 'sportspress_list_content', 'sportspress_default_list_content' );
|
||||
|
||||
Reference in New Issue
Block a user