add_action(
'wp_head',
function() {
echo '<meta name="robots" content="noindex, nofollow">';
}
);
plugins: [
new CopyPlugin([
{
from: './src/a.txt',
to: './dist'
}])
]
const N = Number(prompt("N"));
let run = true;
let i = 0;
while (run) {
i++;
const res = Math.pow(2, i);
if (res === N) {
run = false;
alert(i);
}
}
document.addEventListener('DOMContentLoaded', function () {
const contentNode = document.querySelector('.asdasd-1');
const output = document.querySelector('.dsadsa');
output.innerHTML = contentNode.innerHTML;
});