'; } function sp_save_post( $post_id ) { global $post, $typenow; if ( isset( $_POST['sportspress'] ) ): $sportspress = (array)$_POST['sportspress']; if ( isset( $_POST ) && !empty( $sportspress ) ): if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return $post_id; if ( !current_user_can( 'edit_post', $post_id ) ) return $post_id; if ( !isset( $_POST['sportspress_nonce'] ) || ! wp_verify_nonce( $_POST['sportspress_nonce'], plugin_basename( __FILE__ ) ) ) return $post_id; foreach ( $sportspress as $key => $value ): delete_post_meta( $post_id, $key ); if ( is_array( $value ) ): foreach ( $value as $single_value ): add_post_meta( $post_id, $key, $single_value, false ); endforeach; else: update_post_meta( $post_id, $key, $value ); endif; endforeach; endif; endif; } add_action( 'save_post', 'sp_save_post' ); ?>