PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
wpnull24
/
framework
/
templates
/
elements
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * Page Block element */ if ( is_numeric( $id ) ) { $page_block = get_post( $id ); } else { return; } if ( $page_block AND $page_block->post_type == 'us_page_block' ) { us_add_to_page_block_ids( $page_block->ID ); $page_block_content = $page_block->post_content; us_open_wp_query_context(); us_add_page_shortcodes_custom_css( $id ); us_close_wp_query_context(); } else { return; } // Remove [vc_row] and [vc_column] if set if ( $remove_rows ) { $page_block_content = str_replace( array( '[vc_row]', '[/vc_row]', '[vc_column]', '[/vc_column]' ), '', $page_block_content ); $page_block_content = preg_replace( '~\[vc_row (.+?)]~', '', $page_block_content ); $page_block_content = preg_replace( '~\[vc_column (.+?)]~', '', $page_block_content ); } // Force fullwidth for all [vc_row] if set if ( ! $remove_rows AND $force_fullwidth_rows ) { $page_block_content = str_replace( '[vc_row]', '[vc_row width="full"]', $page_block_content ); $page_block_content = str_replace( '[vc_row ', '[vc_row width="full" ', $page_block_content ); } // Apply filters to Page Block content and echoing it ouside of us_open_wp_query_context echo apply_filters( 'us_page_block_the_content', $page_block_content ); us_remove_from_page_block_ids();
[+]
..
[-] person.php
[edit]
[-] separator.php
[edit]
[-] post_custom_field.php
[edit]
[-] post_image.php
[edit]
[-] page_block.php
[edit]
[-] image_slider.php
[edit]
[-] cform.php
[edit]
[-] progbar.php
[edit]
[-] btn.php
[edit]
[-] product_field.php
[edit]
[-] socials.php
[edit]
[-] cta.php
[edit]
[-] message.php
[edit]
[-] vc_wp_custommenu.php
[edit]
[-] contacts.php
[edit]
[-] post_taxonomy.php
[edit]
[-] flipbox.php
[edit]
[-] grid.php
[edit]
[-] post_comments.php
[edit]
[-] gallery.php
[edit]
[-] sharing.php
[edit]
[-] post_date.php
[edit]
[-] product_ordering.php
[edit]
[-] post_navigation.php
[edit]
[-] add_to_cart.php
[edit]
[-] product_gallery.php
[edit]
[-] gmaps.php
[edit]
[-] vc_tta_tabs.php
[edit]
[-] breadcrumbs.php
[edit]
[-] page_title.php
[edit]
[-] counter.php
[edit]
[-] vc_video.php
[edit]
[-] cart.php
[edit]
[-] post_content.php
[edit]
[-] image.php
[edit]
[-] vc_row_inner.php
[edit]
[-] dropdown.php
[edit]
[-] iconbox.php
[edit]
[-] vc_column.php
[edit]
[-] post_title.php
[edit]
[-] hwrapper.php
[edit]
[-] .elements.php
[edit]
[-] vc_column_text.php
[edit]
[-] additional_menu.php
[edit]
[-] vc_tta_section.php
[edit]
[-] popup.php
[edit]
[-] scroller.php
[edit]
[-] menu.php
[edit]
[-] pricing.php
[edit]
[-] search.php
[edit]
[-] text.php
[edit]
[-] post_author.php
[edit]
[-] vc_row.php
[edit]
[-] itext.php
[edit]
[-] html.php
[edit]