netmix / radio-station

Radio Station WordPress Plugin (Open Source)
https://netmix.com
GNU General Public License v3.0
19 stars 14 forks source link

How to change the text of the program header #450

Closed rubendc11 closed 1 year ago

rubendc11 commented 1 year ago

Hi,

I would like to know how to change the text of the header of the programs (About the Programa).

Thanks.

majick777 commented 1 year ago

You can use the filter radio_station_show_description_label as found in /templates/single-show-content.php eg.

add_filter( 'radio_station_show_description_label', 'my_custom_show_label', 10, 2 );
function my_custom_show_label( $label, $post_id ) {
    $label = 'New Label';
    return $label;
}