| 1 |
<?php |
| 2 |
/** |
| 3 |
* Displays the campaign description. |
| 4 |
* |
| 5 |
* Override this template by copying it to yourtheme/charitable/campaign/description.php |
| 6 |
* |
| 7 |
* @author Studio 164a |
| 8 |
* @since 1.0.0 |
| 9 |
*/ |
| 10 |
|
| 11 |
// Exit if accessed directly. |
| 12 |
if ( ! defined( 'ABSPATH' ) ) { exit; } |
| 13 |
|
| 14 |
$campaign = $view_args['campaign']; |
| 15 |
|
| 16 |
?> |
| 17 |
<div class="campaign-description"> |
| 18 |
<?php echo $campaign->description ?> |
| 19 |
</div> |
| 20 |
|