Advertisement
BDHexor

Extra Wordpress Code

May 20th, 2014
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. অতিরিক্ত কিন্তু কাজের কিছু কোড
  2.  
  3. কাস্টম পোস্টে কাস্টম পেজিনেশন আনার জন্য
  4. ==========================================
  5. <?php
  6. $temp = $wp_query;
  7. $wp_query = null;
  8. $wp_query = new WP_Query();
  9. $wp_query->query('showposts=6&post_type=Testimonial_items'.'&paged='.$paged);
  10.  
  11. while ($wp_query->have_posts()) : $wp_query->the_post();
  12. ?>
  13.  
  14. <div class="main_teetimonial">
  15. <img src="<?php echo get_post_meta($post->ID, 'CLIENT_logo', true); ?>" alt="" />
  16.  
  17. <div class="main_testi_content">
  18. <p><?php echo get_post_meta($post->ID, 'CLIENT_short', true); ?></p>
  19. <h4>- <?php echo get_post_meta($post->ID, 'CLIENT_NAMES', true); ?>, <?php echo get_post_meta($post->ID, 'CLIENT_lacation', true); ?></h4>
  20. <a href="<?php echo get_post_meta($post->ID, 'CLIENT_web', true); ?>" class="company_web"><?php echo get_post_meta($post->ID, 'CLIENT_web', true); ?></a>
  21.  
  22. </div>
  23. </div>
  24.  
  25. <?php endwhile; ?>
  26.  
  27. <nav>
  28. <?php previous_posts_link('&laquo; Newer') ?>
  29. <?php next_posts_link('Older &raquo;') ?>
  30. </nav>
  31.  
  32. <?php
  33. $wp_query = null;
  34. $wp_query = $temp; // Reset
  35. ?>
  36.  
  37. ওয়ার্ড ডিফাইন করার জন্য
  38. ===========================
  39. <?php echo wp_trim_words( get_the_content(), 15 );?>
  40. <?php $thetitle = $post->post_title; echo substr($thetitle, 0, 100); ?>
  41.  
  42. পেজ নেভি ইলস করে দেবার কোড
  43. =====================================
  44. <?php if(function_exists('wp_pagenavi')){wp_pagenavi(); } else { include('navigation.php'); } ?>
  45.  
  46. নেক্সট পোস্টের লিঙ্ক আনার জন্য
  47. ======================================
  48. <?php next_post_link(); ?>
  49.  
  50. পেজের কোড
  51. ============================
  52. <?php if(have_posts()) : ?>
  53. <?php while(have_posts()) : the_post(); ?>
  54.  
  55. <h2><?php the_title(); ?></h2>
  56. <?php the_content(); ?>
  57.  
  58. <?php endwhile; ?>
  59. <?php else : ?>
  60. <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  61. <?php endif; ?>
  62.  
  63.  
  64. সিঙ্গেল পেজের ডাটা
  65. =============================
  66. <?php if(have_posts()) : ?>
  67. <?php while(have_posts()) : the_post(); ?>
  68.  
  69. <h2><?php the_title(); ?></h2>
  70. <?php the_content(); ?>
  71. <?php comments_template( '', true ); ?>
  72.  
  73. <?php endwhile; ?>
  74. <?php else : ?>
  75. <h3><?php _e('404 Error&#58; Not Found'); ?></h3>
  76. <?php endif; ?>
  77.  
  78.  
  79. কমেন্ট আনার জন্য
  80. =============================
  81.  
  82. অথর নেম আনার জন্য
  83. ==========================
  84. <?php the_author(); ?>
  85. ক্যাটাগরি আনার জন্য
  86. ==============================
  87. <?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?>
  88. <?php if(function_exists("the_tags")) the_tags(' &bull; Tags: ', ', ', ''); ?>
  89. <?php the_author(); ?>
  90. <?php the_category(', '); ?>
  91. <?php the_time('M') ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement