/**
	 * Renders the custom wprss feed columns added by the add-on.
	 *
	 * @since 2.5
	 */
	public function render_wprss_feed_columns( $column, $post_id ) {
		switch ( $column ) {
			case 'post-type':
				$settings = $this->settings->get_computed_options( $post_id );

				$post_type = $settings['post_type'];
				$post_type_obj = get_post_type_object( $post_type );

				if( $post_type_obj ) {
					$label = $post_type_obj->labels->singular_name;
					$post_type_class = array('wprss-post-type-label');
				}
				else {
					$label = $post_type;
					$post_type_class = array('wprss-post-type-name');

				}

				$post_status = $settings['post_status'];
				$post_statuses = WPRSS_FTP_Settings::get_post_statuses();
				$post_status_name = $post_statuses[$post_status];

				echo sprintf('<p><span class="%3$s">%1$s</span> (<span class="wprss-post-status-name">%2$s</span>)</p>', __( $label ), __( $post_status_name ), implode(' ', $post_type_class));
				break;
		}
	}