Add equation selector

This commit is contained in:
ThemeBoy
2013-11-26 03:15:06 +11:00
parent 7aeec083b8
commit 639f4b86da
4 changed files with 149 additions and 59 deletions

View File

@@ -34,6 +34,9 @@ function sp_manage_posts_custom_column( $column, $post_id ) {
case 'sp_sport':
echo get_the_terms ( $post_id, 'sp_sport' ) ? preg_replace('#<a.*?>.*?</a>#i', '', sp_the_plain_terms( $post_id, 'sp_sport' ) ) : '—';
break;
case 'sp_equation':
echo get_post_meta ( $post_id, 'sp_equation', true );
break;
case 'sp_player':
echo sp_the_posts( $post_id, 'sp_player' );
break;
@@ -143,6 +146,13 @@ function sp_save_post( $post_id ) {
break;
case ( 'sp_stat' ):
// Update equation as string
update_post_meta( $post_id, 'sp_equation', implode( ' ', sp_array_value( $_POST, 'sp_equation', array() ) ) );
break;
case ( 'sp_player' ):
update_post_meta( $post_id, 'sp_stats', sp_array_value( $_POST, 'sp_stats', array() ) );
sp_update_post_meta_recursive( $post_id, 'sp_team', sp_array_value( $_POST, 'sp_team', array() ) );