functions.php dosyasının içine(tema klasöründe yoksa oluşturmak lazım),
Alıntı
<?php
function excerpt($num) {
$limit = $num+1;
$excerpt = explode(' ', get_the_excerpt(), $limit);
array_pop($excerpt);
$excerpt = implode(" ",$excerpt)."...";
echo $excerpt;
}
function content($num) {
$theContent = get_the_content();
$output = preg_replace('/<img[^>]+./','', $theContent);
$limit = $num+1;
$content = explode(' ', $output, $limit);
array_pop($content);
$content = implode(" ",$content)."...";
echo $content;
}
?>
dediğiniz yere de,
Alıntı
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php excerpt('30'); ?>
<?php endwhile; ?>
<?php endif; ?>
yazarsanız olur büyük ihtimalle. 30 az gelirse artırırsınız. 9999999 yazarsanız tüm postu alır.
normal şekilde the_content kullanamazsınız. <p> ve diğer etiketleri de kullanır o zaman.