Select Page

Filter terms and condition content.

Parameters

  1. content – page content, that will be displayed as terms and conditions

Usage

<?php
function change_br_terms_cond_the_content ( $content ) {
//your code here
    return $content;
}

add_filter( 'br_terms_cond_the_content', 'change_br_terms_cond_the_content', 10, 4 );
?>