Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php global $post;
- $args = array( 'posts_per_page' => -1, 'post_type'=> 'page', 'orderby'=> 'menu_order', 'order'=> 'ASC');
- $myposts = get_posts( $args );
- foreach( $myposts as $post ) : setup_postdata($post); ?>
- <li class="scroll"><a href="#<?php echo $post->post_name; ?>"><?php the_title(); ?></a></li>
- <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment