# sellkit/1.3.2/includes/dynamic-keywords/keywords/order-shipping-method.php

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

- Page: https://pluginprobe.com/plugins/sellkit/1.3.2/code/includes/dynamic-keywords/keywords/order-shipping-method.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.3.2/raw/includes/dynamic-keywords/keywords/order-shipping-method.php
- Modified: 2022-10-31T08:54:32+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/1.3.2/code/includes/dynamic-keywords/keywords/order-shipping-method.php#L10-L20`.

```php
<?php

class Order_Shipping_Method extends Tag_Base {
	/**
	 * Get class id.
	 *
	 * @param array $atts array of shortcode arguments.
	 * @return string
	 */
	public function get_id() {
		return '_order_shipping_method';
	}

	/**
	 * Get class title.
	 *
	 * @return string
	 */
	public function get_title() {
		return esc_html__( 'Order Shipping Method', 'sellkit' );
	}

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

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

		return self::$order->get_shipping_method();
	}
}

```
