Astra_Ext_Advanced_Hooks_Markup::template_empty_content()
Empty Content area for Advanced hooks.
Description
Return
(void)
Source
File: addons/advanced-hooks/classes/class-astra-ext-advanced-hooks-markup.php
public function template_empty_content() {
$post_id = get_the_id();
$layout = get_post_meta( $post_id, 'ast-advanced-hook-layout', true );
if ( empty( $layout ) ) {
the_content();
}
}
Expand full source code Collapse full source code View on Trac