'; } 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 ): if ( is_array( $value ) ) $value = serialize( $value ); update_post_meta( $post_id, $key, $value ); endforeach; endif; endif; } add_action( 'save_post', 'sp_save_post' ); ?>