• open code editor and replace this lines.

    wp-content/copy-or-move-comments/copy_move_comments.php line 118
    $post_types = get_post_types();

    wp-content/copy-or-move-comments/copy_move_comments.php line 157
    $target_post_types = get_post_types();

    save changes and upload file. its ok !

Viewing 1 replies (of 1 total)
  • Thread Starter Nova Year

    (@novayear)

    extra fix -> get posts fastes way with order by date last to old

    wp-content/copy-or-move-comments/copy_move_functions.php line 14-18

        $post_query = new WP_Query(array(
            'post_type'         => $post_type,
            'post_status'       => $post_status,
            'posts_per_page'    => 20,
            'order'          => 'DESC',
            'orderby'        => 'date'
        ));
Viewing 1 replies (of 1 total)
  • The topic ‘how to fix get all post types’ is closed to new replies.