Advertisement
pusatdata

WP-Flexithemes: Membuat Readmore Otomatis

Apr 29th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. MEMBUAT READMORE OTOMATIS
  2.  
  3. Ganti kode berikut:
  4. <?php
  5. the_content('');
  6. ?>
  7.  
  8. Dengan kode:
  9. <?php
  10. echo $flexitheme->shorten(get_the_excerpt(), '40');
  11. ?>
  12.  
  13. UNTUK CATEGORY
  14. 1. Copy file post.php menjadi post-category.php
  15. 2. Baru ganti seperti di atas.
  16. 3. Ini berlaku juga untuk tag dan archive
  17. 4. Jika ingin satu untuk semua, langsung edit di post.php
  18.  
  19.  
  20. CARA LAINNYA READMORE
  21.  
  22. First way;
  23. 1- in index.php replace <?php the_content(); ?>
  24. with <?php the_excerpt(); ?>
  25.  
  26. 2-in function.php paste these code lines:
  27. function new_excerpt_more( $more ) {
  28. return ' <a class="read-more" href="'. get_permalink( get_the_ID() ) . '">Read More</a>';
  29. }
  30. add_filter( 'excerpt_more', 'new_excerpt_more' );
  31.  
  32.  
  33. Second Way
  34. 1-in index.php add following code lines
  35. <?php the_excerpt(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permalink to <?php the_title() ?>">Read More...</a>
  36.  
  37. Finally save the template and see the result.Thank you for reading my article.See you next time with a new tip or trick.
  38.  
  39.  
  40. ==================================
  41.  
  42. MEMBUAT POST BORDER
  43. Border di Pinggir Post:
  44. .post {
  45. margin-bottom: 15px;
  46. border: 1px solid #D8D8D8;
  47. background: #FFFFFF;
  48. padding: 10px 10px 0 10px;
  49. }
  50.  
  51. =====================================
  52.  
  53. TITLE HOME
  54. .title-home {
  55. color: #00366F;
  56. margin: 0 0 10px 0;
  57. padding: 0;
  58. font-family: 'Oswald', sans-serif;
  59. font-size: 12px;
  60. line-height: 12px;
  61. font-weight: normal;
  62. }
  63.  
  64. Memanggil fontny, letakkan di atas bawah general:
  65. @import url(https://fonts.googleapis.com/css?family=Oswald);
  66.  
  67. =====================================
  68.  
  69. MEMBUAT KOLOM DI HOME
  70. <span style="width: 115px; height: 250px; float: left; margin-right: 5px; margin-bottom: 5px; overflow: hidden;">
  71. LOOP-POST
  72. </span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement