# propertyhive/2.2.2/templates/global/wrapper-end.php

Property Hive, version 2.2.2. 31 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.2/code/templates/global/wrapper-end.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.2/raw/templates/global/wrapper-end.php
- Modified: 2015-11-30T09:44:04+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/propertyhive/2.2.2/code/templates/global/wrapper-end.php#L10-L20`.

```php
<?php
/**
 * Content wrappers
 *
 * @author      PropertyHive
 * @package     PropertyHive/Templates
 * @version     1.0.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;
	default :
		echo '</div></div>';
		break;
}
```
