워드프레스 연관동영상 관련 질문드립니다!

제가 아래 코드를 사용해서 같은 카테고리 내에 있는 게시글들이 썸네일과 제목으로 랜덤하게 뿌려지게끔 만들었는데

썸네일 모양이나 크기가 다 중구난방이에요 ㅠㅠ

게다가 css로 좀 꾸미고 싶은데 저것들이 어디서 불려오는건지를 몰라서 못꾸미고 있어요...

썸네일 크기 지정이나 불러오는 제목 위치나 모양 등을 바꾸려면 어떻게 해야하나요?

 

  <?php
                    $args = array(
                        'posts_per_page' => 3, // How many items to display - 표시할 항목 개수
                        'post__not_in'   => array( get_the_ID() ), // Exclude current post - 현재 글 제외
                        'no_found_rows'  => true, // We don't need pagination so this speeds up the query - 쿼리 속도 높임
                        'orderby'=>'rand' // 랜덤하게 표시하기 위해 추가됨. 삭제하면 랜덤하게 표시되지 않음
                    );

                    $cats = wp_get_post_terms( get_the_ID(), 'category' );
                    $cats_ids = array();
                    foreach( $cats as $wpex_related_cat ) {
                        $cats_ids[] = $wpex_related_cat->term_id;
                    }
                    if ( ! empty( $cats_ids ) ) {
                        $args['category__in'] = $cats_ids;
                    }
                    // Query posts
                    $wpex_query = new wp_query( $args );

                    // Loop through posts
                    foreach( $wpex_query->posts as $post ) : setup_postdata( $post ); ?>

                    <!--관련동영상
                    <tabie border="0" cellpadding="0" cellspacung="0">
                    <tr>
                     <td></td>
                    </tr>
                    </tabie>-->
<div class="relatedthumb">
<a rel="nofollow" href="<?php echo esc_url( urldecode(get_permalink()) ); ?>"><?php the_post_thumbnail('pluto-top-featured-post'); ?><br />
<?php the_title(); ?>
</a>
</div>

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요