Advertisement
kobial8

Single Page Menu Dynamic Codes

Feb 12th, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php global $post;
  2. $args = array( 'posts_per_page' => -1, 'post_type'=> 'page', 'orderby'=> 'menu_order', 'order'=> 'ASC');
  3. $myposts = get_posts( $args );
  4. foreach( $myposts as $post ) : setup_postdata($post); ?>
  5.  
  6. <li class="scroll"><a href="#<?php echo $post->post_name; ?>"><?php the_title(); ?></a></li>
  7. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement