byhorizon adlı üyeden alıntı: mesajı görüntüle
arkadaşlar bu temada
devamını oku nasıl yaparız ?
Anasayfada the_content olarak bulunuyor bu fonksiyon sanırsam

<?php the_content(__('Read more...', 'inove')); ?>
Şununla değiştir.

<?php the_excerpt('Devamını oku...'); ?>
Eğer olmaz ise functions.php ye şu kodu ekleyin.
function new_excerpt_length($length) { return 50; }
add_filter('excerpt_length', 'new_excerpt_length');
function new_excerpt_more($more) { return '<a href="'.get_permalink($post->ID).'">...</a>'; }
add_filter('excerpt_more', 'new_excerpt_more');