Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('wp_head', function () {
- $meta = [
- "enable" => "1",
- "template" => "1",
- "overwrite" => "0",
- "bg "=> "#f70d28",
- "text" => "#ffffff",
- "tag" => "h3",
- "numbering" => "asc",
- "mode" => "normal",
- "nonce" => "f4f5517b86",
- ];
- foreach (get_posts([
- 'numberposts' => -1,
- 'fields' => 'ids',
- ]) as $post) {
- update_post_meta($post, 'post_split', $meta);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement