Title: Hitesh Joshi's Replies | WordPress.org

---

# Hitesh Joshi

  [  ](https://wordpress.org/support/users/hiteshdev/)

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Possible to bulk edit featured image?](https://wordpress.org/support/topic/possible-to-bulk-edit-featured-image/)
 *  [Hitesh Joshi](https://wordpress.org/support/users/hiteshdev/)
 * (@hiteshdev)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/possible-to-bulk-edit-featured-image/#post-1634002)
 * littletechgirl..
 * This should help
 * [http://wordpress.org/extend/plugins/bulk-edit-custom-field/](http://wordpress.org/extend/plugins/bulk-edit-custom-field/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Bulk Actions – Edit – Custom Fields](https://wordpress.org/support/topic/bulk-actions-edit-custom-fields/)
 *  [Hitesh Joshi](https://wordpress.org/support/users/hiteshdev/)
 * (@hiteshdev)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/bulk-actions-edit-custom-fields/#post-1320840)
 * Or may be this will help.
 * [http://wordpress.org/extend/plugins/bulk-edit-custom-field/](http://wordpress.org/extend/plugins/bulk-edit-custom-field/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Detecting child page and showing parent title and subnav](https://wordpress.org/support/topic/detecting-child-page-and-showing-parent-title-and-subnav/)
 *  [Hitesh Joshi](https://wordpress.org/support/users/hiteshdev/)
 * (@hiteshdev)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/detecting-child-page-and-showing-parent-title-and-subnav/#post-1698755)
 * I think you just need a function to do this? a function at functions.php file
 * and call it whereever you need .
    <?php check_if_child(32,’Education Subnav’);?
   >
 * <?php
    function check_if_child($pageid,$thesubnav){ global $post; if(is_child(
   $pageid)) { $parent_title = get_the_title($post->post_parent); echo “<h6>$parent_title
   </h6>”; } echo “<div id=’sub-navigation’>”; if (is_child($pageid)){ wp_nav_menu(
   array(‘menu’ => $thesubnav )); } echo “</div>”;
 * } ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Child page with multiple Parents](https://wordpress.org/support/topic/child-page-with-multiple-parents/)
 *  [Hitesh Joshi](https://wordpress.org/support/users/hiteshdev/)
 * (@hiteshdev)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/child-page-with-multiple-parents/#post-1711219)
 * hello
 * we are working on a similar website with same functionality needed.
 * we will develop a plugin and it will be out before this weekends.
 * cheers

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