Advertisement
GochiSiyan

global split post

Nov 4th, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. add_action('wp_head', function () {
  2. $meta = [
  3. "enable" => "1",
  4. "template" => "1",
  5. "overwrite" => "0",
  6. "bg "=> "#f70d28",
  7. "text" => "#ffffff",
  8. "tag" => "h3",
  9. "numbering" => "asc",
  10. "mode" => "normal",
  11. "nonce" => "f4f5517b86",
  12. ];
  13. foreach (get_posts([
  14. 'numberposts' => -1,
  15. 'fields' => 'ids',
  16. ]) as $post) {
  17. update_post_meta($post, 'post_split', $meta);
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement