Astra_Off_Canvas

Off Canvas Initial Setup


Description


Source

File: inc/builder/type/header/off-canvas/class-astra-off-canvas.php

class Astra_Off_Canvas {

	/**
	 * Constructor function that initializes required actions and hooks.
	 */
	public function __construct() {

		// @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
		require_once ASTRA_OFF_CANVAS_DIR . '/class-astra-off-canvas-loader.php';

		// Include front end files.
		if ( ! is_admin() ) {
			require_once ASTRA_OFF_CANVAS_DIR . '/dynamic-css/dynamic.css.php';
		}
		// @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
	}
}

Changelog

Changelog
Version Description
3.0.0 Introduced.

Methods

  • __construct — Constructor function that initializes required actions and hooks.

User Contributed Notes

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