Merhaba arkadaşlar siteme wordpress'in kendi temilarından birisini kurdum. Fakat bir sorunum var kendi slideri http://aktifutbol.com sitede görüldüğü gibi küçük yüksekliğini büyütmek istiyorum yapamıyorum. slideri editlemek için hiç bir panel vs. yok sadece şu kodları buldum. yardım ederseniz sevinirim.

/**
* The template part for displaying a message that posts cannot be found.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package wimplepro
*/
?>

$limit_slide = 5;
$cats = get_theme_mod('superads_lite_slideshow_category_type');



$args = array(
'category__in' => $cats,
'posts_per_page' => $limit_slide
);

$slide_posts = new WP_Query( $args );

if ( $slide_posts->have_posts() ) :

?>







    while ( $slide_posts->have_posts() ) : $slide_posts->the_post();
    if (has_post_thumbnail()) :
    ?>







  • endif;
    endwhile;
    ?>






endif;
wp_reset_postdata();
?>