Advertisement
arie_cristianD

auto add jnews primaryu category to all posts

Nov 27th, 2024 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1. add_action(
  2.     'admin_init',
  3.     function () {
  4.         if ( 'jnews' === $_GET['page'] && 'documentation' === $_GET['path'] ) {
  5.             $args = array(
  6.                 'post_type'      => 'post',
  7.                 'posts_per_page' => -1,
  8.             );
  9.  
  10.             $query = new WP_Query( $args );
  11.  
  12.             if ( $query->have_posts() ) {
  13.                 while ( $query->have_posts() ) {
  14.                     $query->the_post();
  15.                     $post_id  = get_the_ID();
  16.                     $category = jnews_get_metabox_value( 'jnews_primary_category.id', null, $post_id );
  17.                     if ( empty( $category ) ) {
  18.                         $categories = array_slice( get_the_category( $post_id ), 0, 1 );
  19.                         if ( ! empty( $categories ) ) {
  20.                             $category    = array_shift( $categories );
  21.                             $category_id = $category->term_id;
  22.                             update_post_meta( $post_id, 'jnews_primary_category', array( 'id' => (int) $category_id ) );
  23.                         }
  24.                     }
  25.                 }
  26.                 wp_reset_postdata();
  27.             }
  28.         }
  29.     }
  30. );
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement