MakaleServisi adlı üyeden alıntı: mesajı görüntüle
Medya ayarları bölümünden görüntülenen resimlerin en küçük ve en büyük görüntülenme boyutunu ayarlayabilirsiniz. Tam metnin göründüğünü söylemişsiniz devamını oku fonksiyonu çalışmıyor mu?

Saygılar.
Abiler dediklerinizi yaptım ama pek işe yaramadı yada tam yapamadım bakın demo linkim bu www.karabaglarbelediyesi.net index.php kodlarımda bunlar ben aynı haber sitelerindeki gibi konular orta blokta alt alta blok şeklinde çıksın blokta haberin resimi önce küçük çıksın detaya tıklayınca normal resim görülsün istiyorum
<?php get_header(); ?>

<?php include(TEMPLATEPATH."/left.php");?>
<?php include(TEMPLATEPATH."/right.php");?>

<!-- ########################### The Loop - Begin ################################### -->
<?php if (have_posts()) : ?>
	<!-- If there are any posts, iterate over each post -->
	<?php while (have_posts()) : the_post(); ?>

        <div class="center-widget-title"></div>
		<div class="center-widget">
		
			<h2 class="post-title">
			    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
			</h2>
			
			<p class="postmeta"> 
			   <span class="post-date"><?php the_time('j M, Y') ?></span>&nbsp;
			   <span class="post-comment"><?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments'), 'commentslink', __('Comments off')); ?></span>
			   <?php edit_post_link(__('Edit'), ' · ', ''); ?>
			</p>

			<!-- The article content -->
			<div class="post-content">
			     <?php the_content('Continue Reading...'); ?>
			</div><!-- post-content -->

			<!-- Traceback autodiscovery -->
			<!-- <?php trackback_rdf(); ?> -->

	</div> <!-- center-widget -->
	<!-- End of the loop -->

	<?php endwhile; ?>
	<!-- Page Navigation -->
	<?php
		global $wpdb, $posts_per_page, $fromwhere, $matches, $max_num_pages,
					 $request, $posts_per_page;
		if (! is_single()) {
			if (get_query_var('what_to_show') == 'posts') {
				if ( ! isset($max_num_pages) ) {
					preg_match('#FROM (.*) GROUP BY#', $request, $matches);
					$fromwhere = $matches[1];
					$numposts = $wpdb->get_var("SELECT COUNT(ID) FROM $fromwhere");
					$max_num_pages = ceil($numposts / $posts_per_page);
				}
			} else {
				$max_num_pages = 999999;
			}

			if ($max_num_pages > 1) {
	?>
        <div class="center-widget-title"></div>
        <div class="center-widget">
		<div class="bottom-page-nav">
		     <?php posts_nav_link('', '', '&laquo; Previous Entries'); ?>
                     <?php echo' | ' ?>
		     <?php posts_nav_link('', 'Next Entries &raquo;', ''); ?>
		</div>
	</div> <!-- center-widget -->
	<?php
			}
		}
	?>

<!-- If no post is found... -->
<?php else : ?>
	<div class="center-widget-title"></div>
	<div class="center-widget">
             <h2>Error 404 - Page Not Found</h2>
	     <p>Sorry! but the page you requested has either been deleted or does not exist.</p>
	</div> <!-- center-widget -->
<?php endif; ?>
<!-- ########################### The Loop - End ##################################### -->

<?php get_footer(); ?>