Advertisement
afsarwebdev

wp-One-Page-Scrolling-Nav

Mar 14th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. //In ul write the code of bellow
  2.  
  3. <ul class="nav navbar-nav">
  4.  
  5. <?php
  6. global $post;
  7. $args = array(
  8. 'post_type' => 'page',
  9. 'orderby' => 'menu_order',
  10. 'posts_per_page' => -1,
  11. 'order' => 'ASC'
  12. );
  13. $myposts = get_posts( $args );
  14. foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
  15.  
  16. <li><a class="page-scroll" href="#<?php echo $post->post_name; ?>"><?php the_title(); ?></a></li>
  17.  
  18. <?php endforeach; ?>
  19. </ul>
  20. // Note that; Create the page including order like Home, order 1, About order 2, Services order 3 etc.
  21. // No need the register function for menu dynamic in this case.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement