We know that when we customize a new wordpress theme then we need a null theme or starter theme for customization. this types of theme is fully customizable so all of their functions are wordpress basic as usual. a common problem in this theme is 'excerpt ellips' which is like this '[…]' it stay on worpdress starter themes after excerpts like this:
if you want to replace this with readmore link then you need copy this code:
after copy this code paste it in to your themes 'functions.php' file and save it. now see that excerpt ellips is replaced with 'Readmore' link like this:
Thanks for visiting my blog.
if you want to replace this with readmore link then you need copy this code:
function ld_new_excerpt_more($more) {IF PROBLEM TO COPY CODE TRY HERE
global $post;
return '<a class="more-link" href="'. get_permalink($post->ID) . '"> Read more.</a>';
}
add_filter('excerpt_more', 'ld_new_excerpt_more');
after copy this code paste it in to your themes 'functions.php' file and save it. now see that excerpt ellips is replaced with 'Readmore' link like this:
Thanks for visiting my blog.
0 comments:
Post a Comment
Comments here