# sellkit/trunk/includes/dynamic-keywords/keywords/order-total.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version trunk. 40 lines.

- Page: https://pluginprobe.com/plugins/sellkit/trunk/code/includes/dynamic-keywords/keywords/order-total.php
- Raw: https://pluginprobe.com/plugins/sellkit/trunk/raw/includes/dynamic-keywords/keywords/order-total.php
- Modified: 2025-10-06T16:06:30+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/sellkit/trunk/code/includes/dynamic-keywords/keywords/order-total.php#L10-L20`.

```php
<?php

class Order_Total extends Tag_Base {
	/**
	 * Get class id.
	 *
	 * @return string
	 */
	public function get_id() {
		return '_order_total';
	}

	/**
	 * Get class title.
	 *
	 * @param array $atts array of shortcode arguments.
	 * @return string
	 */
	public function get_title() {
		return esc_html__( 'Order Total', 'sellkit' );
	}

	/**
	 * Render true content.
	 *
	 * @return string
	 */
	public function render_content( $atts ) {
		$this->get_data();

		if ( empty( self::$order ) ) {
			return $this->shortcode_content( $atts );
		}

		$order_data = self::$order->get_data();

		return $order_data['total'];
	}
}

```
