Custom Property Title Actions Labels
<?php
/**
* Custom Property Title Actions Labels
*/
add_filter('wpcasa_do_property_title_actions_labels', 'custom_do_property_title_actions_labels');
function custom_do_property_title_actions_labels($property_title_actions_labels) {
$property_title_actions_labels = array(
'favorites' => __( 'Add to Favorites', 'wpcasa' ),
'print' => __( 'Print Version', 'wpcasa' )
);
return $property_title_actions_labels;
}