name = esc_html__( 'Property Address Postcode', 'propertyhive' ); $this->icon = '3'; $this->main_css_element = '%%order_class%%'; } public function get_fields() { $fields = array(); return $fields; } public function render( $attrs, $content, $render_slug ) { $post_id = get_the_ID(); $property = new PH_Property($post_id); if ( !isset($property->id) ) { return; } if ( $property->address_postcode == '' ) { return; } $return = '
'; $return .= esc_html($property->address_postcode); $return .= '
'; return $this->_render_module_wrapper( $return, $render_slug ); } }