# propertyhive/2.2.6/includes/avada-widgets/property-address-postcode-shortcode.php

Property Hive, version 2.2.6. 68 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.6/code/includes/avada-widgets/property-address-postcode-shortcode.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.6/raw/includes/avada-widgets/property-address-postcode-shortcode.php
- Modified: 2025-09-08T11:38:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.6/code/includes/avada-widgets/property-address-postcode-shortcode.php#L10-L20`.

```php
<?php

add_shortcode( 'avada_property_address_postcode', function( $atts ) {
    $atts = shortcode_atts( array(
        'content_align'    => 'left',
        'fusion_font_family_address_postcode_font' => '',
        'fusion_font_variant_address_postcode_font' => '',
        'font_size'  => '',
        'letter_spacing'  => '',
        'text_transform'  => '',
        'line_height'  => '',
        'text_color'       => '',
    ), $atts );

    if ( get_post_type( get_the_ID() ) != 'property' )
    {
    	return '';
    }

    fusion_element_rendering_elements( true );

    global $property;
    
    if ( empty($property) )
    {
        $property = new PH_Property(get_the_ID());
    }

    if ( $property->address_postcode == '' )
    {
        return '';
    }

    $style = Fusion_Builder_Element_Helper::get_font_styling( $atts, 'address_postcode_font' );

	if ( $atts['font_size'] ) {
		$style .= 'font-size:' . fusion_library()->sanitize->get_value_with_unit( $atts['font_size'] ) . ';';
	}

	if ( $atts['letter_spacing'] ) {
		$style .= 'letter-spacing:' . fusion_library()->sanitize->get_value_with_unit( $atts['letter_spacing'] ) . ';';
	}

	if ( ! empty( $atts['text_transform'] ) ) {
		$style .= 'text-transform:' . $atts['text_transform'] . ';';
	}

	if ( ! empty( $atts['content_align'] ) ) {
		$style .= 'text-align:' . $atts['content_align'] . ';';
	}

    ob_start();

    echo '<div ' . FusionBuilder::attributes( 'property-address-postcode-shortcode' ) . '>
    	<div style="' . $style . '">';

        echo esc_html($property->address_postcode);

    echo '
    	</div>
    </div>';

    $html = ob_get_clean();

    fusion_element_rendering_elements( false );

    return $html;
});
```
