after_slider
do_action( 'after_slider', $propertyId );
This action hooks into the single property template, and adds content after the slider.
function prefix_my_content( $property_id ) {
return 'Here is some content';
}
add_action( 'after_slider', 'prefix_my_content' );
wppd_quick_contact_cc_headers
Add additional CC emails to the quick contact (CF9) form.
add_filter( 'wppd_quick_contact_cc_headers', function( $headers ) {
$headers[] = 'Cc: cc1@example.com';
$headers[] = 'Cc: cc2@example.com';
return $headers;
});