🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 13:01:41 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
momotimes.therahuldas.com
/
wp-content
/
themes
/
barlog
/
inc
/
builder
📍 /home/therahul/momotimes.therahuldas.com/wp-content/themes/barlog/inc/builder
🔄 Refresh
✏️
Editing: template-functions.php
Writable
<?php /** * @package barlog */ if ( ! function_exists( 'barlog_is_builder_row_display' ) ) { function barlog_is_builder_row_display( $builder_id, $row_id = false, $post_id = false ) { $show = true; if ( $row_id && $builder_id ) { $key = $builder_id . '_' . $row_id; $disable = get_post_meta( $post_id, '_barlog_disable_' . $key, true ); if ( $disable ) { $show = false; } } return apply_filters( 'barlog_is_builder_row_display', $show, $builder_id, $row_id, $post_id ); } } if ( ! function_exists( 'barlog_body_classes' ) ) { function barlog_body_classes( $classes ) { if ( is_customize_preview() ) { $classes[] = 'customize-previewing'; } return $classes; } } add_filter( 'body_class', 'barlog_body_classes' );
💾 Save Changes
❌ Cancel