Title: 5-squared's Replies | WordPress.org

---

# 5-squared

  [  ](https://wordpress.org/support/users/5-squared/)

 *   [Profile](https://wordpress.org/support/users/5-squared/)
 *   [Topics Started](https://wordpress.org/support/users/5-squared/topics/)
 *   [Replies Created](https://wordpress.org/support/users/5-squared/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/5-squared/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/5-squared/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/5-squared/engagements/)
 *   [Favorites](https://wordpress.org/support/users/5-squared/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [cu3er](https://wordpress.org/support/topic/cu3er/)
 *  [5-squared](https://wordpress.org/support/users/5-squared/)
 * (@5-squared)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/cu3er/#post-1358500)
 * Not sure if you already got your answer, but the dropshadown is not part of the
   flash movie. You need to incorporate the dropshadow into your design and get 
   it in place via html/css.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Getting subnav to appear within the main navigation in a subpage](https://wordpress.org/support/topic/getting-subnav-to-appear-within-the-main-navigation-in-a-subpage/)
 *  [5-squared](https://wordpress.org/support/users/5-squared/)
 * (@5-squared)
 * [16 years, 2 months ago](https://wordpress.org/support/topic/getting-subnav-to-appear-within-the-main-navigation-in-a-subpage/#post-1275001)
 * This is an old thread, but here is the code in case anyone else needs it. This
   will pull in the subnav for the section you are in.
 *     ```
       <ul id="nav_sub">
       <?php
       if($post->post_parent)
       $children = wp_list_pages("sort_column=menu_order&depth=1&title_li=&child_of=".$post->post_parent."&echo=0"); else
       $children = wp_list_pages("sort_column=menu_order&depth=1&title_li=&child_of=".$post->ID."&echo=0");
       if ($children) { ?>
       <?php echo $children; ?>
       <?php } ?>
       </ul>
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)