11 lines
261 B
PHP
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";
|
|
|