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