Astra_Customizer_Ext_WooCommerce_Partials


Description


Source

File: addons/woocommerce/classes/class-astra-customizer-ext-woocommerce-partials.php

	class Astra_Customizer_Ext_WooCommerce_Partials {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 * Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() { }

		/**
		 * Render the Below Header Section 1 for the selective refresh partial.
		 *
		 * @since 1.1.0
		 */
		public static function _render_shop_load_more() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
			return astra_get_option( 'shop-load-more-text' );
		}
	}

Methods


User Contributed Notes

You must log in before being able to contribute a note or feedback.