Astra_Ext_Advanced_Hooks_Markup::is_brizy_activated( int $post_id )

Check is Brizy page builder activated.


Description


Parameters

$post_id

(int) (Required) Post/Page id.


Return

(boolean)


Source

File: addons/advanced-hooks/classes/class-astra-ext-advanced-hooks-markup.php

		 * @param int $post_id post id.
		 */
		public function get_action_content( $post_id ) {

			if ( false === apply_filters( 'astra_addon_render_custom_layout_content', true, $post_id ) ) {
				return;
			}

			if ( ! static::get_time_duration_eligibility( $post_id ) ) {
				return;
			}

			$action                 = get_post_meta( $post_id, 'ast-advanced-hook-action', true );
			$display_device_classes = $this->get_display_device( $post_id );

			// Exclude div wrapper if selected hook is from below list.

User Contributed Notes

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