# give/4.16.9/templates/global/wrapper-end.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 66 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/templates/global/wrapper-end.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/templates/global/wrapper-end.php
- Modified: 2020-03-31T00:14:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/templates/global/wrapper-end.php#L10-L20`.

```php
<?php
/**
 * Content wrappers
 *
 * @package     Give
 * @subpackage  Templates/Global
 * @copyright   Copyright (c) 2016, GiveWP
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

$template = get_option( 'template' );

switch ( $template ) {
	case 'twentyeleven':
		echo '</div></div>';
		break;
	case 'twentytwelve':
		echo '</div></div>';
		break;
	case 'twentythirteen':
		echo '</div></div>';
		break;
	case 'twentyfourteen':
		echo '</div></div></div>';
		get_sidebar( 'content' );
		break;
	case 'twentyfifteen':
		echo '</div></div>';
		break;
	case 'twentynineteen':
		echo '</div></div></div>';
		break;
	case 'x':
		echo '</div></div></div></div>';
		break;
	case 'salient':
		echo '</div></div></div>';
		break;
	case 'jupiter':
		echo '</div></div></div>';
		break;
	case 'philanthropy-parent':
		echo '</div></div></div></div>';
		break;
	case 'zerif-lite':
		echo '</main></article></div></div></div>';
		break;
	case 'customizr':
		echo '</div>';
		break;
	case 'catch-evolution':
		echo '</div>';
		break;
	case 'twentyseventeen':
		echo '</div>';
		break;
	default:
		echo apply_filters( 'give_default_wrapper_end', '</div></div>' );
		break;
}

```
