Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- অতিরিক্ত কিন্তু কাজের কিছু কোড
- কাস্টম পোস্টে কাস্টম পেজিনেশন আনার জন্য
- ==========================================
- <?php
- $temp = $wp_query;
- $wp_query = null;
- $wp_query = new WP_Query();
- $wp_query->query('showposts=6&post_type=Testimonial_items'.'&paged='.$paged);
- while ($wp_query->have_posts()) : $wp_query->the_post();
- ?>
- <div class="main_teetimonial">
- <img src="<?php echo get_post_meta($post->ID, 'CLIENT_logo', true); ?>" alt="" />
- <div class="main_testi_content">
- <p><?php echo get_post_meta($post->ID, 'CLIENT_short', true); ?></p>
- <h4>- <?php echo get_post_meta($post->ID, 'CLIENT_NAMES', true); ?>, <?php echo get_post_meta($post->ID, 'CLIENT_lacation', true); ?></h4>
- <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>
- </div>
- </div>
- <?php endwhile; ?>
- <nav>
- <?php previous_posts_link('« Newer') ?>
- <?php next_posts_link('Older »') ?>
- </nav>
- <?php
- $wp_query = null;
- $wp_query = $temp; // Reset
- ?>
- ওয়ার্ড ডিফাইন করার জন্য
- ===========================
- <?php echo wp_trim_words( get_the_content(), 15 );?>
- <?php $thetitle = $post->post_title; echo substr($thetitle, 0, 100); ?>
- পেজ নেভি ইলস করে দেবার কোড
- =====================================
- <?php if(function_exists('wp_pagenavi')){wp_pagenavi(); } else { include('navigation.php'); } ?>
- নেক্সট পোস্টের লিঙ্ক আনার জন্য
- ======================================
- <?php next_post_link(); ?>
- পেজের কোড
- ============================
- <?php if(have_posts()) : ?>
- <?php while(have_posts()) : the_post(); ?>
- <h2><?php the_title(); ?></h2>
- <?php the_content(); ?>
- <?php endwhile; ?>
- <?php else : ?>
- <h3><?php _e('404 Error: Not Found'); ?></h3>
- <?php endif; ?>
- সিঙ্গেল পেজের ডাটা
- =============================
- <?php if(have_posts()) : ?>
- <?php while(have_posts()) : the_post(); ?>
- <h2><?php the_title(); ?></h2>
- <?php the_content(); ?>
- <?php comments_template( '', true ); ?>
- <?php endwhile; ?>
- <?php else : ?>
- <h3><?php _e('404 Error: Not Found'); ?></h3>
- <?php endif; ?>
- কমেন্ট আনার জন্য
- =============================
- অথর নেম আনার জন্য
- ==========================
- <?php the_author(); ?>
- ক্যাটাগরি আনার জন্য
- ==============================
- <?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?>
- <?php if(function_exists("the_tags")) the_tags(' • Tags: ', ', ', ''); ?>
- <?php the_author(); ?>
- <?php the_category(', '); ?>
- <?php the_time('M') ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement