WP read more
index.php<?php read_more(10); ?>.... <a href="<?php the_permalink(); ?>">read more</a>
functions.php
function read_more($limit){
$contents = explode(' ', get_the_content());
$less_contents = array_slice($contents, 0, $limit);
echo implode(" ", $less_contents);
}
functions.php
function read_more($limit){
$contents = explode(' ', get_the_content());
$less_contents = array_slice($contents, 0, $limit);
echo implode(" ", $less_contents);
}
Comments
Post a Comment