Wordpress teması sorunlar

1 Cevap php

Geçenlerde bir wordpress tema yapma oldum ve şimdi bazı kod sadece çalışmayı durdurdu. Sonrası biçimlendirme kayboldu ve şimdi ben sadece her yazı için içine metin ile bir paragraf var! İşte yazı için php kod:

<?php get_header(); ?>
	<div id="content">
		<div class="wrap">
			<div id="leftcol">
<?php if (have_posts()) : ?>

	<?php while (have_posts()) : the_post(); ?>
				<div class="post" id="post-<?php the_ID(); ?>">
					<div class="meta alignleft">
						<span class="date"><?php the_time('F j, y') ?></span>
						<span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
						<span class="tags"><?php the_tags('', ', ', ''); ?></span>
					</div>
					<div class="body alignright">
						<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
						<?php the_excerpt(); ?>
					</div>
					<div class="clear"></div>
				</div>
	<?php endwhile; ?>

	<ul>
		<li><?php next_posts_link('&laquo; Older Entries') ?></li>
		<li><?php previous_posts_link('Newer Entries &raquo;') ?></li>
	</ul>

<?php else : ?>

	<h2>Not Found</h2>
	<p>Sorry, but you are looking for something that isn't here.</p>

<?php endif; ?>

			</div>
		</div>
	</div>

Bu tema klasöründe index.php dosyasındaki tüm kodudur. Ben yazının sol tarafındaki yazının bazı meta veriler ve sağ tarafta gerçek yazı var.

Bu sayfaya çıkışlar budur. (Bu # content div içinde ne olduğunu sadece. Bana her şeyi yayınlamak için çok fazla yoktu.)

<div id="content"><div class="wrap">
<div id="leftcol">
  <p>This is some random text that’s added just for effect. Thanks for the consideration. This is some random text that’s added just for effect. Thanks for the consideration. This is some random text that’s added just for effect. Thanks for the consideration. This is some random text that’s added just f<a href="#">or effect. Thanks for</a> the consideration. </p>
  <p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging! Welcome to WordPress. This is your first post. Edit or delete it, then start blogging! Welcome to WordPress</p>
</div></div></div>

Ne oldu!?

1 Cevap

Eğer işlenen alır tek şey olduğu anlamına mı <?php the_excerpt(); ?>. Ya da her şey ayrıştırılır oluyor, ancak aralarında <?php the_time('F j, y') ?> tarafından üretilen şeyler yapmadı var spans?

Eğer harfi sadece başka bir şablon etiketi kullanarak meselesi daha böyledir. the_excerpt sadece karakter belirli bir miktar ile sınırlı bir yazının küçük bir bölümünü, nakleder. Eğer bütün yazı görüntülemek istiyorsanız, the_content kullanmanız gerekir.