PATH:
home
/
thebhoeo
/
.trash
/
woodmart
/
inc
/
modules
/
layouts
/
wpb
/
shortcodes
/
single-product
<?php /** * Meta value shortcode. * * @package Woodmart */ use XTS\Modules\Layouts\Main; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } if ( ! function_exists( 'woodmart_shortcode_single_product_meta_value' ) ) { /** * Meta value shortcode. * * @param array $settings Shortcode attributes. */ function woodmart_shortcode_single_product_meta_value( $settings ) { $default_settings = array( 'alignment' => 'left', 'css' => '', 'meta_key' => '', ); $settings = wp_parse_args( $settings, $default_settings ); if ( ! $settings['meta_key'] ) { return ''; } $meta_value = get_post_meta( get_the_ID(), $settings['meta_key'], true ); if ( empty( $meta_value ) ) { return ''; } $wrapper_classes = apply_filters( 'vc_shortcodes_css_class', '', '', $settings ); if ( $settings['css'] ) { $wrapper_classes .= ' ' . vc_shortcode_custom_css_class( $settings['css'] ); } $wrapper_classes .= ' text-' . woodmart_vc_get_control_data( $settings['alignment'], 'desktop' ); ob_start(); Main::setup_preview(); ?> <div class="wd-single-meta-value wd-wpb<?php echo esc_attr( $wrapper_classes ); ?>"> <?php echo $meta_value; // phpcs:ignore ?> </div> <?php Main::restore_preview(); return ob_get_clean(); } }
[-] compare-button.php
[edit]
[-] brands.php
[edit]
[-] reviews.php
[edit]
[-] linked-variations.php
[edit]
[-] size-guide-button.php
[edit]
[-] countdown.php
[edit]
[-] title.php
[edit]
[-] brand-information.php
[edit]
[-] frequently-bought-together.php
[edit]
[-] stock-progress-bar.php
[edit]
[-] dynamic-discounts-table.php
[edit]
[-] sold-counter.php
[edit]
[-] stock-status.php
[edit]
[-] short-description.php
[edit]
[-] price-tracker.php
[edit]
[-] price.php
[edit]
[+]
..
[-] additional-info-table.php
[edit]
[-] content.php
[edit]
[-] nav.php
[edit]
[-] meta-value.php
[edit]
[-] extra-content.php
[edit]
[-] tabs.php
[edit]
[-] estimate-delivery.php
[edit]
[-] wishlist-button.php
[edit]
[-] gallery.php
[edit]
[-] add-to-cart.php
[edit]
[-] meta.php
[edit]
[-] rating.php
[edit]
[-] visitor-counter.php
[edit]