rem_ribbon_text
This filter is responsible for rendering the text of the ribbon
Arguments
- Text to Display [string]
- Property ID [integer]
Example
Suppose you want to add a ribbon text Sold to those properties which have their Property Status set to Sold, paste the following code inside the functions.php file of your theme.
add_filter( 'rem_ribbon_text', 'rem_custom_ribbon', 10, 2 ); function rem_custom_ribbon($text_to_display, $property_id){ if (get_post_meta( $property_id, 'rem_property_status', true ) == 'Sold') { return 'Sold'; } }