title tag function
function title_tag () { // 0. uppercase string $str = strtoupper ( $_SERVER[‘REQUEST_URI’] ); // 1. remove trailing and init slash $str = trim ( $str , “https://wordpress.stackexchange.com/” ); // 2. add search and replace chars; // two array, with same element size, // 1. element of search array will be replaced // with the … Read more