Change the Courseware word to something else
function before_header() {
ob_start("callback");
}
function callback($buffer) {
$buffer = str_replace('Courseware', 'Classroom', $buffer);
return $buffer;
}
function buffer_end() {
ob_end_flush();
}
add_action('wp_head', 'before_header', 1);
add_action('wp_footer', 'buffer_end', 1);
Advertisement
No trackbacks yet.