Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-conte.../themes/Divi/includes/builder/module
File: FullwidthPostSlider.php
) );
[1000] Fix | Delete
[1001] Fix | Delete
$multi_view_attrs_show_image = $multi_view->render_attrs( array(
[1002] Fix | Delete
'visibility' => array(
[1003] Fix | Delete
'show_image' => 'on',
[1004] Fix | Delete
),
[1005] Fix | Delete
) );
[1006] Fix | Delete
[1007] Fix | Delete
// Background layout class names.
[1008] Fix | Delete
$background_layout_class_names = et_pb_background_layout_options()->get_background_layout_class( $this->props );
[1009] Fix | Delete
[1010] Fix | Delete
ob_start();
[1011] Fix | Delete
[1012] Fix | Delete
$show_no_results_template = true;
[1013] Fix | Delete
[1014] Fix | Delete
$args = array(
[1015] Fix | Delete
'posts_number' => $posts_number,
[1016] Fix | Delete
'include_categories' => implode( ',', self::filter_include_categories( $include_categories ) ),
[1017] Fix | Delete
'orderby' => $orderby,
[1018] Fix | Delete
'content_source' => $content_source_both ? 'both' : $multi_view->get_value( 'content_source' ),
[1019] Fix | Delete
'use_manual_excerpt' => $use_manual_excerpt,
[1020] Fix | Delete
'excerpt_length' => $excerpt_length,
[1021] Fix | Delete
'offset_number' => $offset_number,
[1022] Fix | Delete
);
[1023] Fix | Delete
[1024] Fix | Delete
if ( 'on' === $use_current_loop ) {
[1025] Fix | Delete
if ( ! have_posts() || is_singular() ) {
[1026] Fix | Delete
// Force an empty result set in order to avoid loops over the current post.
[1027] Fix | Delete
$args = array( 'post__in' => array( 0 ) );
[1028] Fix | Delete
$show_no_results_template = false;
[1029] Fix | Delete
} else {
[1030] Fix | Delete
// Only allow certain args when `Posts For Current Page` is set.
[1031] Fix | Delete
global $wp_query;
[1032] Fix | Delete
$original = $wp_query->query_vars;
[1033] Fix | Delete
$allowed = array(
[1034] Fix | Delete
'posts_number',
[1035] Fix | Delete
'content_source',
[1036] Fix | Delete
'use_manual_excerpt',
[1037] Fix | Delete
'excerpt_length',
[1038] Fix | Delete
'offset_number',
[1039] Fix | Delete
);
[1040] Fix | Delete
$custom = array_intersect_key( $args, array_flip( $allowed ) );
[1041] Fix | Delete
$args = array_merge( $original, $custom );
[1042] Fix | Delete
}
[1043] Fix | Delete
}
[1044] Fix | Delete
[1045] Fix | Delete
$query = self::get_blog_posts( $args, array(), array(), false );
[1046] Fix | Delete
[1047] Fix | Delete
if ( $query->have_posts() ) {
[1048] Fix | Delete
while ( $query->have_posts() ) {
[1049] Fix | Delete
$query->the_post();
[1050] Fix | Delete
ET_Post_Stack::replace( $post );
[1051] Fix | Delete
[1052] Fix | Delete
$has_post_thumbnail = $query->posts[ $post_index ]->has_post_thumbnail;
[1053] Fix | Delete
[1054] Fix | Delete
$multi_view->set_custom_prop( 'content_source_both', $content_source_both );
[1055] Fix | Delete
if ( $content_source_both ) {
[1056] Fix | Delete
$multi_view->set_custom_prop( 'post_excerpt', $query->posts[ $post_index ]->post_excerpt );
[1057] Fix | Delete
}
[1058] Fix | Delete
$multi_view->set_custom_prop( 'post_content', $query->posts[ $post_index ]->post_content );
[1059] Fix | Delete
$multi_view->set_custom_prop( 'has_post_thumbnail', $query->posts[ $post_index ]->has_post_thumbnail );
[1060] Fix | Delete
$multi_view->set_custom_prop( 'post_featured_image', $query->posts[ $post_index ]->post_featured_image );
[1061] Fix | Delete
$multi_view->set_custom_prop( 'background_image_featured', $multi_view->get_values( 'show_image', false ) );
[1062] Fix | Delete
$multi_view->set_custom_prop( 'background_image_parallax', $multi_view->get_values( 'show_image', false ) );
[1063] Fix | Delete
[1064] Fix | Delete
$multi_view_attrs_wrapper = $multi_view->render_attrs( array(
[1065] Fix | Delete
'styles' => array(
[1066] Fix | Delete
'background-image' => '{{background_image_featured}}',
[1067] Fix | Delete
),
[1068] Fix | Delete
'classes' => array(
[1069] Fix | Delete
'et_pb_slide_with_image' => array(
[1070] Fix | Delete
'show_image' => 'on',
[1071] Fix | Delete
'has_post_thumbnail' => true,
[1072] Fix | Delete
'image_placement' => array( 'left', 'right' ),
[1073] Fix | Delete
),
[1074] Fix | Delete
'et_pb_slide_with_no_image' => array(
[1075] Fix | Delete
'show_image' => 'on',
[1076] Fix | Delete
'has_post_thumbnail' => false,
[1077] Fix | Delete
),
[1078] Fix | Delete
),
[1079] Fix | Delete
) );
[1080] Fix | Delete
[1081] Fix | Delete
$multi_view_attrs_parallax_bg = 'on' === $parallax ? $multi_view->render_attrs( array(
[1082] Fix | Delete
'styles' => array(
[1083] Fix | Delete
'background-image' => '{{background_image_parallax}}',
[1084] Fix | Delete
),
[1085] Fix | Delete
) ) : '';
[1086] Fix | Delete
[1087] Fix | Delete
$slide_class = 'off' !== $show_image && in_array( $image_placement, array( 'left', 'right' ) ) && $has_post_thumbnail ? ' et_pb_slide_with_image' : '';
[1088] Fix | Delete
$slide_class .= 'off' !== $show_image && ! $has_post_thumbnail ? ' et_pb_slide_with_no_image' : '';
[1089] Fix | Delete
$slide_class .= ' ' . implode( ' ', $background_layout_class_names );
[1090] Fix | Delete
[1091] Fix | Delete
// Reapply module's gradient background on slide item with featured image
[1092] Fix | Delete
$slide_post_id = $query->posts[ $post_index ]->ID;
[1093] Fix | Delete
$slide_class .= " et_pb_post_slide-{$slide_post_id}";
[1094] Fix | Delete
[1095] Fix | Delete
ET_Builder_Module_Helper_Slider::reapply_module_background_on_slide( array(
[1096] Fix | Delete
'slide_post_id' => $slide_post_id,
[1097] Fix | Delete
'post_featured_image' => $query->posts[ $post_index ]->post_featured_image,
[1098] Fix | Delete
'render_slug' => $render_slug,
[1099] Fix | Delete
'props' => $this->props,
[1100] Fix | Delete
) );
[1101] Fix | Delete
?>
[1102] Fix | Delete
<div class="et_pb_slide et_pb_media_alignment_center<?php echo esc_attr( $slide_class ); ?>" <?php echo et_core_esc_previously( $multi_view_attrs_wrapper ); ?>>
[1103] Fix | Delete
<?php if ( 'on' === $parallax && $is_show_image && 'background' === $image_placement ) { ?>
[1104] Fix | Delete
<div class="et_parallax_bg_wrap">
[1105] Fix | Delete
<div class="et_parallax_bg<?php if ( 'off' === $parallax_method ) { echo ' et_pb_parallax_css'; } ?>" style="background-image: url(<?php echo esc_url( $query->posts[ $post_index ]->post_featured_image ); ?>);"<?php echo et_core_esc_previously( $multi_view_attrs_parallax_bg ); ?>></div>
[1106] Fix | Delete
</div>
[1107] Fix | Delete
<?php } ?>
[1108] Fix | Delete
<?php if ( 'on' === $use_bg_overlay ) { ?>
[1109] Fix | Delete
<div class="et_pb_slide_overlay_container"></div>
[1110] Fix | Delete
<?php } ?>
[1111] Fix | Delete
<div class="et_pb_container clearfix">
[1112] Fix | Delete
<div class="et_pb_slider_container_inner">
[1113] Fix | Delete
<?php if ( $is_show_image && $has_post_thumbnail && ! in_array( $image_placement, array( 'background', 'bottom' ) ) ) { ?>
[1114] Fix | Delete
<div class="et_pb_slide_image"<?php echo et_core_esc_previously( $multi_view_attrs_show_image ); ?>>
[1115] Fix | Delete
<?php the_post_thumbnail(); ?>
[1116] Fix | Delete
</div>
[1117] Fix | Delete
<?php } ?>
[1118] Fix | Delete
<div class="et_pb_slide_description">
[1119] Fix | Delete
<?php if ( $is_text_overlay_applied ) : ?><div class="et_pb_text_overlay_wrapper"><?php endif; ?>
[1120] Fix | Delete
<<?php echo et_pb_process_header_level( $header_level, 'h2' ) ?> class="et_pb_slide_title"><a href="<?php esc_url( the_permalink() ); ?>"><?php the_title(); ?></a></<?php echo et_pb_process_header_level( $header_level, 'h2' ) ?>>
[1121] Fix | Delete
<div class="et_pb_slide_content <?php if ( 'on' !== $show_content_on_mobile ) { echo esc_attr( $hide_on_mobile_class ); } ?>">
[1122] Fix | Delete
<?php
[1123] Fix | Delete
if ( $is_show_meta ) {
[1124] Fix | Delete
printf(
[1125] Fix | Delete
'<p class="post-meta"%5$s>%1$s | %2$s | %3$s | %4$s</p>',
[1126] Fix | Delete
et_get_safe_localization( sprintf( __( 'by %s', 'et_builder' ), '<span class="author vcard">' . et_pb_get_the_author_posts_link() . '</span>' ) ),
[1127] Fix | Delete
et_get_safe_localization( sprintf( __( '%s', 'et_builder' ), '<span class="published">' . esc_html( get_the_date() ) . '</span>' ) ),
[1128] Fix | Delete
get_the_category_list(', '),
[1129] Fix | Delete
esc_html( sprintf( _nx( '%s Comment', '%s Comments', get_comments_number(), 'number of comments', 'et_builder' ), number_format_i18n( get_comments_number() ) ) ),
[1130] Fix | Delete
$multi_view_attrs_show_meta
[1131] Fix | Delete
);
[1132] Fix | Delete
}
[1133] Fix | Delete
[1134] Fix | Delete
$multi_view->render_element( array(
[1135] Fix | Delete
'tag' => 'div',
[1136] Fix | Delete
'content' => '{{content_source}}',
[1137] Fix | Delete
), true );
[1138] Fix | Delete
?>
[1139] Fix | Delete
</div>
[1140] Fix | Delete
<?php if ( $is_text_overlay_applied ) : ?></div><?php endif; ?>
[1141] Fix | Delete
<?php
[1142] Fix | Delete
// render button
[1143] Fix | Delete
$button_classname = array( 'et_pb_more_button' );
[1144] Fix | Delete
[1145] Fix | Delete
if ( 'on' !== $show_cta_on_mobile ) {
[1146] Fix | Delete
$button_classname[] = $hide_on_mobile_class;
[1147] Fix | Delete
}
[1148] Fix | Delete
[1149] Fix | Delete
echo et_core_esc_previously( $this->render_button( array(
[1150] Fix | Delete
'button_classname' => $button_classname,
[1151] Fix | Delete
'button_custom' => $button_custom,
[1152] Fix | Delete
'button_rel' => $button_rel,
[1153] Fix | Delete
'button_text' => $more_text,
[1154] Fix | Delete
'button_url' => get_permalink(),
[1155] Fix | Delete
'custom_icon' => $custom_icon,
[1156] Fix | Delete
'custom_icon_tablet' => $custom_icon_tablet,
[1157] Fix | Delete
'custom_icon_phone' => $custom_icon_phone,
[1158] Fix | Delete
'display_button' => $multi_view->has_value( 'show_more_button', 'on' ) && $multi_view->has_value( 'more_text' ),
[1159] Fix | Delete
'multi_view_data' => $multi_view->render_attrs( array(
[1160] Fix | Delete
'content' => '{{more_text}}',
[1161] Fix | Delete
'visibility' => array(
[1162] Fix | Delete
'more_text' => '__not_empty',
[1163] Fix | Delete
'show_more_button' => 'on',
[1164] Fix | Delete
),
[1165] Fix | Delete
) ),
[1166] Fix | Delete
) ) );
[1167] Fix | Delete
?>
[1168] Fix | Delete
</div> <!-- .et_pb_slide_description -->
[1169] Fix | Delete
<?php if ( $is_show_image && $has_post_thumbnail && 'bottom' === $image_placement ) { ?>
[1170] Fix | Delete
<div class="et_pb_slide_image"<?php echo et_core_esc_previously( $multi_view_attrs_show_image ); ?>>
[1171] Fix | Delete
<?php the_post_thumbnail(); ?>
[1172] Fix | Delete
</div>
[1173] Fix | Delete
<?php } ?>
[1174] Fix | Delete
</div>
[1175] Fix | Delete
</div> <!-- .et_pb_container -->
[1176] Fix | Delete
</div> <!-- .et_pb_slide -->
[1177] Fix | Delete
<?php
[1178] Fix | Delete
$post_index++;
[1179] Fix | Delete
ET_Post_Stack::pop();
[1180] Fix | Delete
} // end while
[1181] Fix | Delete
ET_Post_Stack::reset();
[1182] Fix | Delete
} // end if
[1183] Fix | Delete
[1184] Fix | Delete
$content = ob_get_clean();
[1185] Fix | Delete
if ( ! $content && $show_no_results_template ) {
[1186] Fix | Delete
$content = '<div class="et_pb_row et_pb_no_results">';
[1187] Fix | Delete
$content .= self::get_no_results_template();
[1188] Fix | Delete
$content .= '</div>';
[1189] Fix | Delete
}
[1190] Fix | Delete
[1191] Fix | Delete
// Background layout data attributes.
[1192] Fix | Delete
$data_background_layout = et_pb_background_layout_options()->get_background_layout_attrs( $this->props );
[1193] Fix | Delete
[1194] Fix | Delete
// Module classnames
[1195] Fix | Delete
$this->add_classname( array(
[1196] Fix | Delete
'et_pb_slider',
[1197] Fix | Delete
'et_pb_post_slider',
[1198] Fix | Delete
"et_pb_post_slider_image_{$image_placement}",
[1199] Fix | Delete
) );
[1200] Fix | Delete
[1201] Fix | Delete
if ( 'on' !== $show_arrows ) {
[1202] Fix | Delete
$this->add_classname( 'et_pb_slider_no_arrows' );
[1203] Fix | Delete
}
[1204] Fix | Delete
[1205] Fix | Delete
if ( 'on' !== $show_pagination ) {
[1206] Fix | Delete
$this->add_classname( 'et_pb_slider_no_pagination' );
[1207] Fix | Delete
}
[1208] Fix | Delete
[1209] Fix | Delete
if ( 'on' === $parallax ) {
[1210] Fix | Delete
$this->add_classname( 'et_pb_slider_parallax' );
[1211] Fix | Delete
}
[1212] Fix | Delete
[1213] Fix | Delete
if ( 'on' === $auto ) {
[1214] Fix | Delete
$this->add_classname( array(
[1215] Fix | Delete
'et_slider_auto',
[1216] Fix | Delete
"et_slider_speed_{$auto_speed}",
[1217] Fix | Delete
) );
[1218] Fix | Delete
}
[1219] Fix | Delete
[1220] Fix | Delete
if ( 'on' === $auto_ignore_hover ) {
[1221] Fix | Delete
$this->add_classname( 'et_slider_auto_ignore_hover' );
[1222] Fix | Delete
}
[1223] Fix | Delete
[1224] Fix | Delete
if ( 'on' === $show_image_video_mobile ) {
[1225] Fix | Delete
$this->add_classname( 'et_pb_slider_show_image' );
[1226] Fix | Delete
}
[1227] Fix | Delete
[1228] Fix | Delete
if ( 'on' === $use_bg_overlay ) {
[1229] Fix | Delete
$this->add_classname( 'et_pb_slider_with_overlay' );
[1230] Fix | Delete
}
[1231] Fix | Delete
[1232] Fix | Delete
if ( 'on' === $use_text_overlay ) {
[1233] Fix | Delete
$this->add_classname( 'et_pb_slider_with_text_overlay' );
[1234] Fix | Delete
}
[1235] Fix | Delete
[1236] Fix | Delete
$muti_view_data_attr = $multi_view->render_attrs( array(
[1237] Fix | Delete
'classes' => array(
[1238] Fix | Delete
'et_pb_slider_no_arrows' => array(
[1239] Fix | Delete
'show_arrows' => 'off',
[1240] Fix | Delete
),
[1241] Fix | Delete
'et_pb_slider_no_pagination' => array(
[1242] Fix | Delete
'show_pagination' => 'off',
[1243] Fix | Delete
),
[1244] Fix | Delete
'et_pb_post_slider_image_background' => array(
[1245] Fix | Delete
'image_placement' => 'background',
[1246] Fix | Delete
),
[1247] Fix | Delete
'et_pb_post_slider_image_left' => array(
[1248] Fix | Delete
'image_placement' => 'left',
[1249] Fix | Delete
),
[1250] Fix | Delete
'et_pb_post_slider_image_right' => array(
[1251] Fix | Delete
'image_placement' => 'right',
[1252] Fix | Delete
),
[1253] Fix | Delete
'et_pb_post_slider_image_top' => array(
[1254] Fix | Delete
'image_placement' => 'top',
[1255] Fix | Delete
),
[1256] Fix | Delete
'et_pb_post_slider_image_bottom' => array(
[1257] Fix | Delete
'image_placement' => 'bottom',
[1258] Fix | Delete
),
[1259] Fix | Delete
)
[1260] Fix | Delete
) );
[1261] Fix | Delete
[1262] Fix | Delete
$output = sprintf(
[1263] Fix | Delete
'<div%3$s class="%1$s"%7$s%8$s>
[1264] Fix | Delete
%5$s
[1265] Fix | Delete
%4$s
[1266] Fix | Delete
<div class="et_pb_slides">
[1267] Fix | Delete
%2$s
[1268] Fix | Delete
</div> <!-- .et_pb_slides -->
[1269] Fix | Delete
%6$s
[1270] Fix | Delete
</div> <!-- .et_pb_slider -->
[1271] Fix | Delete
',
[1272] Fix | Delete
$this->module_classname( $render_slug ),
[1273] Fix | Delete
$content,
[1274] Fix | Delete
$this->module_id(),
[1275] Fix | Delete
$video_background,
[1276] Fix | Delete
$parallax_image_background, // #5
[1277] Fix | Delete
$this->inner_shadow_back_compatibility( $render_slug ),
[1278] Fix | Delete
et_core_esc_previously( $data_background_layout ),
[1279] Fix | Delete
$muti_view_data_attr
[1280] Fix | Delete
);
[1281] Fix | Delete
[1282] Fix | Delete
// Restore $wp_filter
[1283] Fix | Delete
$wp_filter = $wp_filter_cache; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
[1284] Fix | Delete
unset($wp_filter_cache);
[1285] Fix | Delete
[1286] Fix | Delete
return $output;
[1287] Fix | Delete
}
[1288] Fix | Delete
[1289] Fix | Delete
private function inner_shadow_back_compatibility( $functions_name ) {
[1290] Fix | Delete
$utils = ET_Core_Data_Utils::instance();
[1291] Fix | Delete
$atts = $this->props;
[1292] Fix | Delete
$style = '';
[1293] Fix | Delete
[1294] Fix | Delete
if (
[1295] Fix | Delete
version_compare( $utils->array_get( $atts, '_builder_version', '3.0.93' ), '3.0.99', 'lt' )
[1296] Fix | Delete
) {
[1297] Fix | Delete
$class = self::get_module_order_class( $functions_name );
[1298] Fix | Delete
$style = sprintf(
[1299] Fix | Delete
'<style>%1$s</style>',
[1300] Fix | Delete
sprintf(
[1301] Fix | Delete
'.%1$s.et_pb_slider .et_pb_slide {'
[1302] Fix | Delete
. '-webkit-box-shadow: none; '
[1303] Fix | Delete
. '-moz-box-shadow: none; '
[1304] Fix | Delete
. 'box-shadow: none; '
[1305] Fix | Delete
.'}',
[1306] Fix | Delete
esc_attr( $class )
[1307] Fix | Delete
)
[1308] Fix | Delete
);
[1309] Fix | Delete
[1310] Fix | Delete
if ( 'off' !== $utils->array_get( $atts, 'show_inner_shadow' ) ) {
[1311] Fix | Delete
$style .= sprintf(
[1312] Fix | Delete
'<style>%1$s</style>',
[1313] Fix | Delete
sprintf(
[1314] Fix | Delete
'.%1$s > .box-shadow-overlay { '
[1315] Fix | Delete
. '-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
[1316] Fix | Delete
. '-moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
[1317] Fix | Delete
. 'box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); '
[1318] Fix | Delete
. '}',
[1319] Fix | Delete
esc_attr( $class )
[1320] Fix | Delete
)
[1321] Fix | Delete
);
[1322] Fix | Delete
}
[1323] Fix | Delete
}
[1324] Fix | Delete
[1325] Fix | Delete
return $style;
[1326] Fix | Delete
}
[1327] Fix | Delete
[1328] Fix | Delete
/**
[1329] Fix | Delete
* Filter multi view value.
[1330] Fix | Delete
*
[1331] Fix | Delete
* @since 3.27.1
[1332] Fix | Delete
*
[1333] Fix | Delete
* @see ET_Builder_Module_Helper_MultiViewOptions::filter_value
[1334] Fix | Delete
*
[1335] Fix | Delete
* @param mixed $raw_value Props raw value.
[1336] Fix | Delete
* @param array $args {
[1337] Fix | Delete
* Context data.
[1338] Fix | Delete
*
[1339] Fix | Delete
* @type string $context Context param: content, attrs, visibility, classes.
[1340] Fix | Delete
* @type string $name Module options props name.
[1341] Fix | Delete
* @type string $mode Current data mode: desktop, hover, tablet, phone.
[1342] Fix | Delete
* @type string $attr_key Attribute key for attrs context data. Example: src, class, etc.
[1343] Fix | Delete
* @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.
[1344] Fix | Delete
* }
[1345] Fix | Delete
* @param ET_Builder_Module_Helper_MultiViewOptions $multi_view Multiview object instance.
[1346] Fix | Delete
*
[1347] Fix | Delete
* @return mixed
[1348] Fix | Delete
*/
[1349] Fix | Delete
public function multi_view_filter_value( $raw_value, $args, $multi_view ) {
[1350] Fix | Delete
$name = et_()->array_get( $args, 'name', '' );
[1351] Fix | Delete
[1352] Fix | Delete
if ( 'background_image_featured' === $name ) {
[1353] Fix | Delete
$image_placement = et_()->array_get( $this->props, 'image_placement', '' );
[1354] Fix | Delete
$parallax = et_()->array_get( $this->props, 'parallax', '' );
[1355] Fix | Delete
[1356] Fix | Delete
if ( 'on' !== $raw_value || 'background' !== $image_placement || 'on' === $parallax || ! $multi_view->get_value( 'has_post_thumbnail' ) ) {
[1357] Fix | Delete
return 'none';
[1358] Fix | Delete
}
[1359] Fix | Delete
[1360] Fix | Delete
return sprintf( 'url(%1$s)', $multi_view->get_value( 'post_featured_image' ) );
[1361] Fix | Delete
} else if ( 'background_image_parallax' === $name ) {
[1362] Fix | Delete
$image_placement = et_()->array_get( $this->props, 'image_placement', '' );
[1363] Fix | Delete
$parallax = et_()->array_get( $this->props, 'parallax', '' );
[1364] Fix | Delete
[1365] Fix | Delete
if ( 'on' !== $raw_value || 'background' !== $image_placement || 'on' !== $parallax || ! $multi_view->get_value( 'has_post_thumbnail' ) ) {
[1366] Fix | Delete
return 'none';
[1367] Fix | Delete
}
[1368] Fix | Delete
[1369] Fix | Delete
return sprintf( 'url(%1$s)', $multi_view->get_value( 'post_featured_image' ) );
[1370] Fix | Delete
} else if ( 'content_source' === $name ) {
[1371] Fix | Delete
if ( 'on' !== $raw_value && $multi_view->get_value( 'content_source_both' ) ) {
[1372] Fix | Delete
return $multi_view->get_value( 'post_excerpt' );
[1373] Fix | Delete
}
[1374] Fix | Delete
[1375] Fix | Delete
return $multi_view->get_value( 'post_content' );
[1376] Fix | Delete
}
[1377] Fix | Delete
[1378] Fix | Delete
return $raw_value;
[1379] Fix | Delete
}
[1380] Fix | Delete
}
[1381] Fix | Delete
[1382] Fix | Delete
new ET_Builder_Module_Fullwidth_Post_Slider;
[1383] Fix | Delete
[1384] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function