content-single-give-form.php
8 years ago
featured-image.php
6 years ago
sidebar.php
7 years ago
title.php
6 years ago
sidebar.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Single Give Form Sidebar |
| 4 | * |
| 5 | * Adds a dynamic sidebar to single Give Forms (singular post type for give_forms) - Override this template by copying it to yourtheme/give/single-give-form/sidebar.php |
| 6 | * |
| 7 | * @package Give |
| 8 | * @subpackage Templates/Single-Give-Form |
| 9 | * @copyright Copyright (c) 2016, GiveWP |
| 10 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
| 11 | * @since 1.0 |
| 12 | */ |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit; // Exit if accessed directly. |
| 16 | } |
| 17 | if ( is_active_sidebar( 'give-forms-sidebar' ) ) { |
| 18 | dynamic_sidebar( 'give-forms-sidebar' ); |
| 19 | } |
| 20 |