Filter pchntv_custom_entry_detail_html

Created by Daniel Feldbrugge, Modified on Fri, 08 Dec 2023 at 02: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 atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article