LLMS_Twenty_Nineteen

Twenty Nineteen Theme Support


Source Source

File: includes/theme-support/class-llms-twenty-nineteen.php

class LLMS_Twenty_Nineteen {

	/**
	 * Static Constructor.
	 *
	 * @since 3.31.0
	 *
	 * @return void
	 */
	public static function init() {

		// This theme doesn't have a sidebar.
		remove_action( 'lifterlms_sidebar', 'lifterlms_get_sidebar', 10 );

		// Handle content wrappers.
		remove_action( 'lifterlms_before_main_content', 'lifterlms_output_content_wrapper', 10 );
		remove_action( 'lifterlms_after_main_content', 'lifterlms_output_content_wrapper_end', 10 );

		add_action( 'lifterlms_before_main_content', array( __CLASS__, 'output_content_wrapper' ), 10 );
		add_action( 'lifterlms_after_main_content', array( __CLASS__, 'output_content_wrapper_end' ), 10 );

	}

	/**
	 * Output Twentynineteen theme wrapper openers
	 *
	 * @since 3.31.0
	 *
	 * @return void
	 */
	public static function output_content_wrapper() {
		echo '<section id="primary" class="content-area"><main id="main" class="site-main"><div class="entry"><div class="entry-content">';
	}

	/**
	 * Output Twentynineteen theme wrapper closers
	 *
	 * @since 3.31.0
	 *
	 * @return void
	 */
	public static function output_content_wrapper_end() {
		echo '</div></div></main></section>';
	}

}

Top ↑

Methods Methods


Top ↑

Changelog Changelog

Changelog
Version Description
3.31.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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