jrobinsonc
10/14/2016 - 9:18 PM

WordPress: Change post type

WordPress: Change post type

<?php 

$query = new WP_Query([
    'post_type' => 'post',
    'cat' => 4,
    'per_page' => -1,
]);

while ($query->have_posts()) {
    $query->the_post();
    $post_id = get_the_ID();
    the_title();
    the_category();
    echo '<br>';

    $wpdb->query("UPDATE $wpdb->posts SET post_type = 'video' WHERE ID = $post_id LIMIT 1");
}