39292-vm/fix_radius.php
2026-03-26 22:39:58 +00:00

11 lines
261 B
PHP

<?php
$post_id = 48;
$post = get_post($post_id);
$content = $post->post_content;
$content = str_replace("border-radius: 32px;", "border-radius: 40px;", $content);
wp_update_post(['ID' => $post_id, 'post_content' => $content]);
echo "Fixed border radius.\n";