Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter jonathan.perez

    (@jonathanperez)

    Another solution can be optimize code:

    File: includes/class-carousel-slider-form.php

    
    $posts = get_posts( array(
       'post_type'      => $post_type,
       'post_status'    => 'publish',
       'posts_per_page' => - 1,
       'fields' => 'ids'
    ) );
    foreach ( $posts as $postID ) {
       $selected = in_array( $postID, $value ) ? ' selected="selected"' : '';
       echo '<option value="' . $postID . '" ' . $selected . '>' . get_the_title($postID) . '</option>';
    
    }
    
    
Viewing 1 replies (of 1 total)