Advertisement
BDHexor

ওয়ান পেজ ডাইনামিক করার নিয়ম ।

Sep 30th, 2014
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. global $post;
  3. $args = array('post_type' => 'page', 'orderby'=> 'menu_order','posts_per_page'=>-1,'order'=>'ASC');
  4. $myposts = get_posts( $args );
  5. foreach( $myposts as $post ) : setup_postdata($post); ?>
  6.  
  7.  
  8. <li><a href="#<?php echo $post->post_name;?>" class="e-eleganticons-92" id="active_menu"><br/><span><?php the_title();?></span></a></li>
  9. <li>
  10.  
  11. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement