# charitable/1.8.12.1/includes/admin/views/settings/heading.php

Charitable – Donation &amp; Fundraising Platform (Donation Forms, Recurring Donations &amp; Fundraising Campaigns), version 1.8.12.1. 24 lines.

- Page: https://pluginprobe.com/plugins/charitable/1.8.12.1/code/includes/admin/views/settings/heading.php
- Raw: https://pluginprobe.com/plugins/charitable/1.8.12.1/raw/includes/admin/views/settings/heading.php
- Modified: 2026-01-07T16:49:56+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/charitable/1.8.12.1/code/includes/admin/views/settings/heading.php#L10-L20`.

```php
<?php

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

/**
 * Display section heading in settings area.
 *
 * @author    David Bisset
 * @package   Charitable/Admin View/Settings
 * @copyright Copyright (c) 2023, WP Charitable LLC
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since     1.0.0
 * @version   1.6.19
 */

if ( isset( $view_args['description'] ) ) : ?>
	<div class="charitable-description"><?php echo $view_args['description']; // phpcs:ignore ?></div>
<?php else : ?>
<hr <?php echo charitable_get_arbitrary_attributes( $view_args ); // phpcs:ignore ?> />
<?php endif; ?>

```
