Advertisement
asadsuman

Feature Images and Read More

Mar 20th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!-------------------------------------------Theme Feature images support and cropping and read more link----------------------------- >
  2. add_theme_support( 'post-thumbnails', array( 'post' ) );
  3. add_image_size( 'post', 191, 191, true );/*croping */
  4. <!--------------------------------------------------------Read More-------------------------------------------------->
  5. /*code for read more link*/
  6. function excerpt($num) {
  7. $limit = $num+1;
  8. $excerpt = explode(' ', get_the_excerpt(), $limit);
  9. array_pop($excerpt);
  10. $excerpt = implode(" ",$excerpt)." <a href='" .get_permalink($post->ID) ." ' class='".readmore."'>Read More</a>";
  11. echo $excerpt;
  12. }
  13. <----------------------------------------Active Read More,actually where need read more past blew code--------------------------------->
  14. /*active read more function in our location*/
  15. <?php echo excerpt('15'); ?>/*here 15 means after how many words we get read more link*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement