Filter pchntv_custom_entry_detail_html

Created by Daniel Feldbrugge, Modified on Fri, 8 Dec, 2023 at 2:32 PM by Daniel Feldbrugge

add_filter('pchntv_custom_entry_detail_html', function ($return, $args){
    ob_start();
    echo $args['straat'] . ' ' . $args['huisnummer'].$args['toevoeging'];
    echo "<br/>";
    echo $args['postcode'];
    echo "<br/>";
    echo $args['plaats'];
    $return = ob_get_contents();
    ob_end_clean();
    return $return;
},10,2);

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article