Astra_Builder_Footer::above_footer()

Call above footer UI.


Description


Source

File: inc/builder/markup/class-astra-builder-footer.php

		public function above_footer() {

			if ( astra_wp_version_compare( '5.4.99', '>=' ) ) {

				get_template_part(
					'template-parts/footer/builder/footer',
					'row',
					array(
						'row' => 'above',
					)
				);
			} else {

				set_query_var( 'row', 'above' );
				get_template_part( 'template-parts/footer/builder/footer', 'row' );
			}

		}


User Contributed Notes

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