Kullandığım kod şu şekilde, functions.php içinde.
function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . 'Devamını Oku → »' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more'); 2
●407
function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . 'Devamını Oku → »' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more'); function new_excerpt_more($more) {
global $post;
return '… <a href="'. get_permalink($post->ID) . '">' . '<span class="devaminioku">Devamını Oku → »</span>' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');style.css dosyanıza da özel bir div atamanız gerekiyor. örneğin ;.devaminioku {
font-family:Tahoma;
font-size:10px;
color:#renkkodu;
}Saygılarımla