add_action( 'template_redirect', function() {
if( is_page(2) ){
wp_redirect( 'wp-signup.php' );
exit;
}
} );
document.querySelectorAll('.red').forEach((el) => {
let html = el.innerHTML;
html = html.replace(/(текст который генерируется)/, (full, a1) => {
return `<span class="txt-transform">${a1}</span>`
});
el.innerHTML = html;
})
if(window.location.pathname == "/123/") {
document.location = "https://ru.ru/123/111/222/";
};