PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / templates / global / wrapper-end.php

wrapper-end.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at templates/global/wrapper-end.php

66 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Content wrappers
4 *
5 * @package Give
6 * @subpackage Templates/Global
7 * @copyright Copyright (c) 2016, GiveWP
8 * @license https://opensource.org/licenses/gpl-license GNU Public License
9 * @since 1.0
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 exit; // Exit if accessed directly.
14 }
15
16 $template = get_option( 'template' );
17
18 switch ( $template ) {
19 case 'twentyeleven':
20 echo '</div></div>';
21 break;
22 case 'twentytwelve':
23 echo '</div></div>';
24 break;
25 case 'twentythirteen':
26 echo '</div></div>';
27 break;
28 case 'twentyfourteen':
29 echo '</div></div></div>';
30 get_sidebar( 'content' );
31 break;
32 case 'twentyfifteen':
33 echo '</div></div>';
34 break;
35 case 'twentynineteen':
36 echo '</div></div></div>';
37 break;
38 case 'x':
39 echo '</div></div></div></div>';
40 break;
41 case 'salient':
42 echo '</div></div></div>';
43 break;
44 case 'jupiter':
45 echo '</div></div></div>';
46 break;
47 case 'philanthropy-parent':
48 echo '</div></div></div></div>';
49 break;
50 case 'zerif-lite':
51 echo '</main></article></div></div></div>';
52 break;
53 case 'customizr':
54 echo '</div>';
55 break;
56 case 'catch-evolution':
57 echo '</div>';
58 break;
59 case 'twentyseventeen':
60 echo '</div>';
61 break;
62 default:
63 echo apply_filters( 'give_default_wrapper_end', '</div></div>' );
64 break;
65 }
66