# give/2.3.0/templates/single-give-form/title.php

GiveWP – Donation Plugin and Fundraising Platform, version 2.3.0. 18 lines.

- Page: https://pluginprobe.com/plugins/give/2.3.0/code/templates/single-give-form/title.php
- Raw: https://pluginprobe.com/plugins/give/2.3.0/raw/templates/single-give-form/title.php
- Modified: 2018-05-03T03:28:36+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/2.3.0/code/templates/single-give-form/title.php#L10-L20`.

```php
<?php
/**
 * Single Give Form Title
 * 
 * Displays the main title for the single donation form - Override this template by copying it to yourtheme/give/single-give-form/title.php
 * 
 * @package     Give
 * @subpackage  templates/single-give-form
 * @copyright   Copyright (c) 2016, WordImpress
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
} ?>
<h1 itemprop="name" class="give-form-title entry-title"><?php the_title(); ?></h1>

```
