';
}
?>
';
}
endif;
}
?>
< class="entry-title">
>
' . et_pb_get_the_author_posts_link() . '' ) )
: '';
$author_separator = 'on' === $args['show_author'] && 'on' === $args['show_date']
? ' | '
: '';
// phpcs:disable WordPress.WP.I18n.NoEmptyStrings -- intentionally used.
$date = 'on' === $args['show_date']
? et_get_safe_localization( sprintf( __( '%s', 'et_builder' ), '
' . esc_html( get_the_date( str_replace( '\\\\', '\\', $args['meta_date'] ) ) ) . '' ) )
: '';
// phpcs:enable
$date_separator = ( ( 'on' === $args['show_author'] || 'on' === $args['show_date'] ) && 'on' === $args['show_categories'] )
? ' | '
: '';
$categories = 'on' === $args['show_categories']
? et_builder_get_the_term_list( ', ' )
: '';
$categories_separator = ( ( 'on' === $args['show_author'] || 'on' === $args['show_date'] || 'on' === $args['show_categories'] ) && 'on' === $args['show_comments'] )
? ' | '
: '';
$comments = 'on' === $args['show_comments']
? et_core_maybe_convert_to_utf_8( sprintf( esc_html( _nx( '%s Comment', '%s Comments', get_comments_number(), 'number of comments', 'et_builder' ) ), number_format_i18n( get_comments_number() ) ) )
: '';
printf(
'
%1$s %2$s %3$s %4$s %5$s %6$s %7$s
',
et_core_esc_previously( $author ),
et_core_intentionally_unescaped( $author_separator, 'fixed_string' ),
et_core_esc_previously( $date ),
et_core_intentionally_unescaped( $date_separator, 'fixed_string' ),
et_core_esc_wp( $categories ),
et_core_intentionally_unescaped( $categories_separator, 'fixed_string' ),
et_core_esc_previously( $comments )
);
}
$post_content = et_strip_shortcodes( et_delete_post_first_video( get_the_content() ), true );
// reset the fb processing flag
$et_fb_processing_shortcode_object = false;
// set the flag to indicate that we're processing internal content
$et_pb_rendering_column_content = true;
// reset all the attributes required to properly generate the internal styles
ET_Builder_Element::clean_internal_modules_styles();
echo '
';
if ( 'on' === $args['show_content'] ) {
global $more;
// page builder doesn't support more tag, so display the_content() in case of post made with page builder
if ( et_pb_is_pagebuilder_used( get_the_ID() ) ) {
$more = 1; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
echo et_core_intentionally_unescaped( apply_filters( 'the_content', $post_content ), 'html' );
} else {
$more = null; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
echo et_core_intentionally_unescaped( apply_filters( 'the_content', et_delete_post_first_video( get_the_content( esc_html__( 'read more...', 'et_builder' ) ) ) ), 'html' );
}
} elseif ( 'on' === $args['show_excerpt'] ) {
if ( has_excerpt() && 'off' !== $args['use_manual_excerpt'] ) {
the_excerpt();
} else {
if ( '' !== $post_content ) {
// set the $et_fb_processing_shortcode_object to false, to retrieve the content inside truncate_post() correctly
$et_fb_processing_shortcode_object = false;
echo et_core_intentionally_unescaped( wpautop( et_delete_post_first_video( strip_shortcodes( truncate_post( $excerpt_length, false, '', true ) ) ) ), 'html' );
// reset the $et_fb_processing_shortcode_object to its original value
$et_fb_processing_shortcode_object = $global_processing_original_value;
} else {
echo '';
}
}
}
$et_fb_processing_shortcode_object = $global_processing_original_value;
// retrieve the styles for the modules inside Blog content
$internal_style = ET_Builder_Element::get_style( true );
// reset all the attributes after we retrieved styles
ET_Builder_Element::clean_internal_modules_styles( false );
$et_pb_rendering_column_content = false;
// append styles to the blog content
if ( $internal_style ) {
printf(
'',
et_core_esc_previously( $internal_style )
);
}
if ( 'on' !== $args['show_content'] ) {
$more = 'on' === $args['show_more'] ? sprintf( '
%2$s', esc_url( get_permalink() ), esc_html__( 'read more', 'et_builder' ) ) : ''; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
echo et_core_esc_previously( $more );
}
echo '
';
?>
';
}
if ( 'on' === $args['show_pagination'] ) {
$container_is_closed = true;
if ( function_exists( 'wp_pagenavi' ) ) {
wp_pagenavi(
array(
'query' => $query,
)
);
} else {
if ( $et_is_builder_plugin_active ) {
include ET_BUILDER_PLUGIN_DIR . 'includes/navigation.php';
} else {
get_template_part( 'includes/navigation', 'index' );
}
}
}
}
unset( $wp_query->et_pb_blog_query );
// Reset $wp_query to its origin
$wp_query = $wp_query_page; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
if ( ! $posts = ob_get_clean() ) {
$posts = self::get_no_results_template( et_core_esc_previously( $processed_header_level ) );
}
self::$rendering = false;
return $posts;
}
/**
* Render pagination element
*
* @since 3.27.1
*
* @param bool $echo Wether to print the output or return it.
*
* @return (void|string)
*/
function render_pagination( $echo = true ) {
if ( ! $echo ) {
ob_start();
}
add_filter( 'get_pagenum_link', array( 'ET_Builder_Module_Blog', 'filter_pagination_url' ) );
if ( function_exists( 'wp_pagenavi' ) ) {
wp_pagenavi();
} else {
if ( et_is_builder_plugin_active() ) {
include ET_BUILDER_PLUGIN_DIR . 'includes/navigation.php';
} else {
get_template_part( 'includes/navigation', 'index' );
}
}
remove_filter( 'get_pagenum_link', array( 'ET_Builder_Module_Blog', 'filter_pagination_url' ) );
if ( ! $echo ) {
$output = ob_get_contents();
ob_end_clean();
return $output;
}
}
/**
* Filter the pagination url to add a flag so it can be filtered to avoid pagination clashes with the main query.
*
* @since 4.0
*
* @param string $result
* @param integer $pagenum
*
* @return string
*/
public static function filter_pagination_url( $result ) {
return add_query_arg( 'et_blog', '', $result );
}
/**
* Renders the module output.
*
* @param array $attrs List of attributes.
* @param string $content Content being processed.
* @param string $render_slug Slug of module that is used for rendering output.
*
* @return string
*/
public function render( $attrs, $content, $render_slug ) {
global $post, $paged, $wp_query, $wp_the_query, $wp_filter, $__et_blog_module_paged;
if ( self::$rendering ) {
// We are trying to render a Blog module while a Blog module is already being rendered
// which means we have most probably hit an infinite recursion. While not necessarily
// the case, rendering a post which renders a Blog module which renders a post
// which renders a Blog module is not a sensible use-case.
return '';
}
// Keep a reference to the real main query to restore from later.
$main_query = $wp_the_query;
// Stored current global post as variable so global $post variable can be restored
// to its original state when et_pb_blog shortcode ends to avoid incorrect global $post
// being used on the page (i.e. blog + shop module in backend builder)
$post_cache = $post;
/**
* Cached $wp_filter so it can be restored at the end of the callback.
* This is needed because this callback uses the_content filter / calls a function
* which uses the_content filter. WordPress doesn't support nested filter
*/
$wp_filter_cache = $wp_filter;
// Helpers.
$sticky = et_pb_sticky_options();
$multi_view = et_pb_multi_view_options( $this );
$use_current_loop = isset( $this->props['use_current_loop'] ) ? $this->props['use_current_loop'] : 'off';
$post_type = isset( $this->props['post_type'] ) ? $this->props['post_type'] : 'post';
$fullwidth = $this->props['fullwidth'];
$posts_number = $this->props['posts_number'];
$include_categories = $this->props['include_categories'];
$meta_date = $this->props['meta_date'];
$show_thumbnail = $this->props['show_thumbnail'];
$show_content = $this->props['show_content'];
$show_author = $this->props['show_author'];
$show_date = $this->props['show_date'];
$show_categories = $this->props['show_categories'];
$show_comments = $this->props['show_comments'];
$show_excerpt = $this->props['show_excerpt'];
$use_manual_excerpt = $this->props['use_manual_excerpt'];
$excerpt_length = $this->props['excerpt_length'];
$show_pagination = $this->props['show_pagination'];
$show_more = $this->props['show_more'];
$offset_number = $this->props['offset_number'];
$use_overlay = $this->props['use_overlay'];
$header_level = $this->props['header_level'];
$background_layout = $this->props['background_layout'];
$background_layout_hover = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' );
$background_layout_hover_enabled = et_pb_hover_options()->is_enabled( 'background_layout', $this->props );
$background_layout_values = et_pb_responsive_options()->get_property_values( $this->props, 'background_layout' );
$background_layout_tablet = isset( $background_layout_values['tablet'] ) ? $background_layout_values['tablet'] : '';
$background_layout_phone = isset( $background_layout_values['phone'] ) ? $background_layout_values['phone'] : '';
$hover_icon = $this->props['hover_icon'];
$hover_icon_values = et_pb_responsive_options()->get_property_values( $this->props, 'hover_icon' );
$hover_icon_tablet = isset( $hover_icon_values['tablet'] ) ? $hover_icon_values['tablet'] : '';
$hover_icon_phone = isset( $hover_icon_values['phone'] ) ? $hover_icon_values['phone'] : '';
$hover_icon_sticky = $sticky->get_value( 'hover_icon', $this->props );
$video_background = $this->video_background();
$parallax_image_background = $this->get_parallax_image_background();
$container_is_closed = false;
$processed_header_level = et_pb_process_header_level( $header_level, 'h2' );
// some themes do not include these styles/scripts so we need to enqueue them in this module to support audio post format
wp_enqueue_style( 'wp-mediaelement' );
wp_enqueue_script( 'wp-mediaelement' );
// remove all filters from WP audio shortcode to make sure current theme doesn't add any elements into audio module
remove_all_filters( 'wp_audio_shortcode_library' );
remove_all_filters( 'wp_audio_shortcode' );
remove_all_filters( 'wp_audio_shortcode_class' );
// Masonry Tile Background color.
$this->generate_styles(
array(
'base_attr_name' => 'masonry_tile_background_color',
'selector' => '%%order_class%% .et_pb_blog_grid .et_pb_post',
'css_property' => 'background-color',
'render_slug' => $render_slug,
'type' => 'color',
)
);
// Overlay Icon Color.
$this->generate_styles(
array(
'hover' => false,
'base_attr_name' => 'overlay_icon_color',
'selector' => '%%order_class%% .et_overlay:before',
'css_property' => 'color',
'render_slug' => $render_slug,
'type' => 'color',
)
);
// Hover Overlay Color.
$this->generate_styles(
array(
'hover' => false,
'base_attr_name' => 'hover_overlay_color',
'selector' => '%%order_class%% .et_overlay',
'css_property' => 'background-color',
'render_slug' => $render_slug,
'type' => 'color',
)
);
$overlay_output = '';
if ( 'on' === $use_overlay ) {
$overlay_output = ET_Builder_Module_Helper_Overlay::render(
array(
'icon' => $hover_icon,
'icon_tablet' => $hover_icon_tablet,
'icon_phone' => $hover_icon_phone,
'icon_sticky' => $hover_icon_sticky,
)
);
// Overlay Icon Styles.
$this->generate_styles(
array(
'hover' => false,
'utility_arg' => 'icon_font_family',
'render_slug' => $render_slug,
'base_attr_name' => 'hover_icon',
'important' => true,
'selector' => '%%order_class%% .et_overlay:before',
'processor' => array(
'ET_Builder_Module_Helper_Style_Processor',
'process_extended_icon',
),
)
);
}
$overlay_class = 'on' === $use_overlay ? ' et_pb_has_overlay' : '';
if ( 'on' !== $fullwidth ) {
wp_enqueue_script( 'salvattore' );
$background_layout = 'light';
$background_layout_tablet = ! empty( $background_layout_tablet ) ? 'light' : '';
$background_layout_phone = ! empty( $background_layout_phone ) ? 'light' : '';
}
$args = array(
'posts_per_page' => (int) $posts_number,
'post_status' => array( 'publish', 'private', 'inherit' ),
'perm' => 'readable',
'post_type' => $post_type,
);
$et_paged = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' );
if ( $__et_blog_module_paged > 1 ) {
$et_paged = $__et_blog_module_paged;
$paged = $__et_blog_module_paged; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
$args['paged'] = $__et_blog_module_paged;
}
if ( is_front_page() ) {
$paged = $et_paged; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
}
$args['cat'] = implode( ',', self::filter_include_categories( $include_categories ) );
$args['paged'] = $et_paged;
if ( '' !== $offset_number && ! empty( $offset_number ) ) {
/**
* Offset + pagination don't play well. Manual offset calculation required
*
* @see: https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination
*/
if ( $paged > 1 ) {
$args['offset'] = ( ( $et_paged - 1 ) * intval( $posts_number ) ) + intval( $offset_number );
} else {
$args['offset'] = intval( $offset_number );
}
}
$main_query_post = ET_Post_Stack::get_main_post();
if ( $main_query_post && is_singular( $main_query_post->post_type ) && ! isset( $args['post__not_in'] ) ) {
$args['post__not_in'] = array( $main_query_post->ID );
}
// Images: Add CSS Filters and Mix Blend Mode rules (if set)
if ( array_key_exists( 'image', $this->advanced_fields ) && array_key_exists( 'css', $this->advanced_fields['image'] ) ) {
$this->add_classname(
$this->generate_css_filters(
$render_slug,
'child_',
self::$data_utils->array_get( $this->advanced_fields['image']['css'], 'main', '%%order_class%%' )
)
);
}
self::$rendering = true;
$post_meta_remove_keys = array(
'show_author',
'show_date',
'show_categories',
'show_comments',
);
$post_meta_removes = array(
'desktop' => array(
'none' => 'none',
),
'tablet' => array(
'none' => 'none',
),
'phone' => array(
'none' => 'none',
),
'hover' => array(
'none' => 'none',
),
);
foreach ( $post_meta_removes as $mode => $post_meta_remove ) {
foreach ( $post_meta_remove_keys as $post_meta_remove_key ) {
if ( $multi_view->has_value( $post_meta_remove_key, 'on', $mode, true ) ) {
continue;
}
$post_meta_remove[ $post_meta_remove_key ] = $post_meta_remove_key;
}
$post_meta_removes[ $mode ] = implode( ',', $post_meta_remove );
}
$multi_view->set_custom_prop( 'post_meta_removes', $post_meta_removes );
$multi_view->set_custom_prop( 'post_content', $multi_view->get_values( 'show_content' ) );
$show_thumbnail = $multi_view->has_value( 'show_thumbnail', 'on' );
ob_start();
// Stash properties that will not be the same after wp_reset_query().
$wp_query_props = array(
'current_post' => $wp_query->current_post,
'in_the_loop' => $wp_query->in_the_loop,
);
$show_no_results_template = true;
if ( 'off' === $use_current_loop ) {
query_posts( $args );
} elseif ( is_singular() ) {
// Force an empty result set in order to avoid loops over the current post.
query_posts( array( 'post__in' => array( 0 ) ) );
$show_no_results_template = false;
} else {
// Only allow certain args when `Posts For Current Page` is set.
$original = $wp_query->query_vars;
$custom = array_intersect_key( $args, array_flip( array( 'posts_per_page', 'offset', 'paged' ) ) );
// Trick WP into reporting this query as the main query so third party filters
// that check for is_main_query() are applied.
$wp_the_query = $wp_query = new WP_Query( array_merge( $original, $custom ) );
}
/**
* Filters Blog module's main query.
*
* @since 4.7.0
* @since 4.11.0 Pass modified module attributes.
*
* @param WP_Query $wp_query
* @param array $attrs Modified module attributes.
*/
$wp_query = apply_filters( 'et_builder_blog_query', $wp_query, $attrs ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- We intend to override $wp_query for blog module.
// Manually set the max_num_pages to make the `next_posts_link` work
if ( '' !== $offset_number && ! empty( $offset_number ) ) {
global $wp_query;
$wp_query->found_posts = max( 0, $wp_query->found_posts - intval( $offset_number ) );
$posts_number = intval( $posts_number );
$wp_query->max_num_pages = $posts_number > 1 ? ceil( $wp_query->found_posts / $posts_number ) : 1;
}
$blog_order = self::_get_index( array( self::INDEX_MODULE_ORDER, $render_slug ) );
$items_count = 0;
$wp_query->et_pb_blog_query = true;
if ( have_posts() ) {
if ( 'off' === $fullwidth ) {
$attribute = et_core_is_fb_enabled() ? 'data-et-vb-columns' : 'data-columns';
echo '
';
}
while ( have_posts() ) {
the_post();
ET_Post_Stack::replace( $post );
$post_format = et_pb_post_format();
$thumb = '';
$width = 'on' === $fullwidth ? 1080 : 400;
$width = (int) apply_filters( 'et_pb_blog_image_width', $width );
$height = 'on' === $fullwidth ? 675 : 250;
$height = (int) apply_filters( 'et_pb_blog_image_height', $height );
$classtext = 'on' === $fullwidth ? 'et_pb_post_main_image' : '';
$titletext = get_the_title();
$alttext = get_post_meta( get_post_thumbnail_id(), '_wp_attachment_image_alt', true );
$thumbnail = get_thumbnail( $width, $height, $classtext, $alttext, $titletext, false, 'Blogimage' );
$thumb = $thumbnail['thumb'];
$no_thumb_class = '' === $thumb || ! $show_thumbnail ? ' et_pb_no_thumb' : '';
if ( in_array( $post_format, array( 'video', 'gallery' ) ) ) {
$no_thumb_class = '';
}
$item_class = sprintf( ' et_pb_blog_item_%1$s_%2$s', $blog_order, $items_count );
$items_count++;
?>
>
',
$thumb
) : '';
printf(
'
%1$s
%2$s
',
et_core_esc_previously( $video_overlay ),
et_core_esc_previously( $first_video )
);
elseif ( 'gallery' === $post_format ) :
et_pb_gallery_images( 'slider' );
elseif ( '' !== $thumb && $show_thumbnail ) :
if ( 'on' !== $fullwidth ) {
echo '
';
}
$thumbnail_output = print_thumbnail( $thumb, $thumbnail['use_timthumb'], $titletext, $width, $height, '', false );
if ( 'on' === $use_overlay ) {
$thumbnail_output .= et_core_esc_previously( $overlay_output );
}
if ( $thumbnail_output ) {
$multi_view->render_element(
array(
'tag' => 'a',
'content' => $thumbnail_output,
'attrs' => array(
'href' => get_the_permalink(),
'class' => 'entry-featured-image-url',
),
'visibility' => array(
'show_thumbnail' => 'on',
),
'required' => array(
'show_thumbnail' => 'on',
),
'hover_selector' => '%%order_class%% .et_pb_post',
),
true
);
}
if ( 'on' !== $fullwidth ) {
echo '
';
}
endif;
}
?>
< class="entry-title">
>
render_element(
array(
'tag' => 'p',
'content' => '{{post_meta_removes}}',
'attrs' => array(
'class' => 'post-meta',
),
'hover_selector' => '%%order_class%% .et_pb_post',
),
true
);
}
echo '
';
$multi_view->render_element(
array(
'tag' => 'div',
'content' => '{{post_content}}',
'attrs' => array(
'class' => 'post-content-inner',
),
'visibility' => array(
'show_excerpt' => 'on',
),
'classes' => array(
'et_pb_blog_show_content' => array(
'show_content' => 'on',
),
),
'hover_selector' => '%%order_class%% .et_pb_post',
),
true
);
$more = $multi_view->render_element(
array(
'tag' => 'a',
'content' => esc_html__( 'read more', 'et_builder' ),
'attrs' => array(
'class' => 'more-link',
'href' => esc_url( get_permalink() ),
),
'visibility' => array(
'show_content' => 'off',
'show_more' => 'on',
),
'required' => array(
'show_content' => 'off',
'show_more' => 'on',
),
'hover_selector' => '%%order_class%% .et_pb_post',
)
);
echo et_core_esc_previously( $more );
echo '
';
?>
';
}
if ( $multi_view->has_value( 'show_pagination', 'on' ) ) {
$multi_view->render_element(
array(
'tag' => 'div',
'content' => $this->render_pagination( false ),
'visibility' => array(
'show_pagination' => 'on',
),
'hover_selector' => '%%order_class%% .et_pb_post',
),
true
);
echo '
';
$container_is_closed = true;
}
} elseif ( $show_no_results_template ) {
echo self::get_no_results_template( et_core_intentionally_unescaped( $processed_header_level, 'fixed_string' ) );
}
unset( $wp_query->et_pb_blog_query );
$wp_the_query = $wp_query = $main_query;
wp_reset_query();
ET_Post_Stack::reset();
// Restore stashed properties.
foreach ( $wp_query_props as $prop => $value ) {
$wp_query->{$prop} = $value;
}
$posts = ob_get_contents();
ob_end_clean();
self::$rendering = false;
// Remove automatically added classnames
$this->remove_classname(
array(
$render_slug,
)
);
// Background layout data attributes.
$background_layout_props = array_merge(
$this->props,
array(
'background_layout' => $background_layout,
'background_layout_tablet' => $background_layout_tablet,
'background_layout_phone' => $background_layout_phone,
)
);
$data_background_layout = et_pb_background_layout_options()->get_background_layout_attrs( $background_layout_props );
if ( 'on' !== $fullwidth ) {
// Module classname
$this->add_classname(
array(
'et_pb_blog_grid_wrapper',
"et_pb_bg_layout_{$background_layout}",
)
);
// Remove auto-added classname for module wrapper because on grid mode these classnames
// are placed one level below module wrapper
$this->remove_classname(
array(
'et_pb_section_video',
'et_pb_preload',
'et_pb_section_parallax',
)
);
// Inner module wrapper classname
$inner_wrap_classname = array(
'et_pb_blog_grid',
'clearfix',
$this->get_text_orientation_classname(),
);
// Background layout class names.
$background_layout_class_names = et_pb_background_layout_options()->get_background_layout_class( $background_layout_props, false, true );
array_merge( $inner_wrap_classname, $background_layout_class_names );
if ( '' !== $video_background ) {
$inner_wrap_classname[] = 'et_pb_section_video';
$inner_wrap_classname[] = 'et_pb_preload';
}
if ( '' !== $parallax_image_background ) {
$inner_wrap_classname[] = 'et_pb_section_parallax';
}
$output = sprintf(
'
%6$s
%5$s
%9$s
%10$s
%3$s %7$s',
$this->module_classname( $render_slug ),
$posts,
( ! $container_is_closed ? '
' : '' ),
$this->module_id(),
$video_background, // #5
$parallax_image_background,
$this->drop_shadow_back_compatibility( $render_slug ),
et_core_esc_previously( $data_background_layout ),
et_core_esc_previously( $this->background_pattern() ), // #9
et_core_esc_previously( $this->background_mask() ) // #10
);
}
// Restore $wp_filter
$wp_filter = $wp_filter_cache; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
unset( $wp_filter_cache );
// Restore global $post into its original state when et_pb_blog shortcode ends to avoid
// the rest of the page uses incorrect global $post variable
$post = $post_cache; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
return $output;
}
public function process_box_shadow( $function_name ) {
if ( isset( $this->props['fullwidth'] ) && $this->props['fullwidth'] === 'off' ) {
// Only override 'default' box shadow because we also defined
// box shadow settings for the image.
$this->advanced_fields['box_shadow']['default'] = array(
'css' => array(
'main' => '%%order_class%% article.et_pb_post',
'hover' => '%%order_class%% article.et_pb_post:hover',
'overlay' => 'inset',
),
);
}
parent::process_box_shadow( $function_name );
}
/**
* Since the styling file is not updated until the author updates the page/post,
* we should keep the drop shadow visible.
*
* @param string $functions_name
*
* @return string
*/
private function drop_shadow_back_compatibility( $functions_name ) {
$utils = ET_Core_Data_Utils::instance();
$atts = $this->props;
if (
version_compare( $utils->array_get( $atts, '_builder_version', '3.0.93' ), '3.0.94', 'lt' )
&&
'on' !== $utils->array_get( $atts, 'fullwidth' )
&&
'on' === $utils->array_get( $atts, 'use_dropshadow' )
) {
$class = self::get_module_order_class( $functions_name );
return sprintf(
'',
sprintf( '.%1$s article.et_pb_post { box-shadow: 0 1px 5px rgba(0,0,0,.1) }', esc_html( $class ) )
);
}
return '';
}
/**
* Filter multi view value.
*
* @since 3.27.1
*
* @see ET_Builder_Module_Helper_MultiViewOptions::filter_value
*
* @param mixed $raw_value Props raw value.
* @param array $args {
* Context data.
*
* @type string $context Context param: content, attrs, visibility, classes.
* @type string $name Module options props name.
* @type string $mode Current data mode: desktop, hover, tablet, phone.
* @type string $attr_key Attribute key for attrs context data. Example: src, class, etc.
* @type string $attr_sub_key Attribute sub key that availabe when passing attrs value as array such as styes. Example: padding-top, margin-botton, etc.
* }
* @param ET_Builder_Module_Helper_MultiViewOptions $multi_view Multiview object instance.
*
* @return mixed
*/
public function multi_view_filter_value( $raw_value, $args, $multi_view ) {
$name = isset( $args['name'] ) ? $args['name'] : '';
$mode = isset( $args['mode'] ) ? $args['mode'] : '';
$context = isset( $args['context'] ) ? $args['context'] : '';
if ( 'post_content' === $name && 'content' === $context ) {
global $et_pb_rendering_column_content;
$post_content = et_strip_shortcodes( et_delete_post_first_video( get_the_content() ), true );
$et_pb_rendering_column_content = true;
if ( 'on' === $raw_value ) {
global $more;
if ( et_pb_is_pagebuilder_used( get_the_ID() ) ) {
$more = 1; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
$raw_value = et_core_intentionally_unescaped( apply_filters( 'the_content', $post_content ), 'html' );
} else {
$more = null; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
$raw_value = et_core_intentionally_unescaped( apply_filters( 'the_content', et_delete_post_first_video( get_the_content( esc_html__( 'read more...', 'et_builder' ) ) ) ), 'html' );
}
} else {
$use_manual_excerpt = isset( $this->props['use_manual_excerpt'] ) ? $this->props['use_manual_excerpt'] : 'off';
$excerpt_length = isset( $this->props['excerpt_length'] ) ? $this->props['excerpt_length'] : 270;
if ( has_excerpt() && 'off' !== $use_manual_excerpt ) {
/**
* Filters the displayed post excerpt.
*
* @since 3.29
*
* @param string $post_excerpt The post excerpt.
*/
$raw_value = apply_filters( 'the_excerpt', get_the_excerpt() );
} else {
$raw_value = et_core_intentionally_unescaped( wpautop( et_delete_post_first_video( strip_shortcodes( truncate_post( $excerpt_length, false, '', true ) ) ) ), 'html' );
}
}
$et_pb_rendering_column_content = false;
} elseif ( 'show_content' === $name && 'visibility' === $context ) {
$raw_value = $multi_view->has_value( $name, 'on', $mode, true ) ? 'on' : $raw_value;
} elseif ( 'post_meta_removes' === $name && 'content' === $context ) {
$post_meta_remove_keys = array(
'show_author' => true,
'show_date' => true,
'show_categories' => true,
'show_comments' => true,
);
$post_meta_removes = explode( ',', $raw_value );
if ( $post_meta_removes ) {
foreach ( $post_meta_removes as $post_meta_remove ) {
unset( $post_meta_remove_keys[ $post_meta_remove ] );
}
}
$post_meta_datas = array();
if ( isset( $post_meta_remove_keys['show_author'] ) ) {
$post_meta_datas[] = et_get_safe_localization( sprintf( __( 'by %s', 'et_builder' ), '