Title: Suseika's Replies | WordPress.org

---

# Suseika

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

 *   [Profile](https://wordpress.org/support/users/suseika/)
 *   [Topics Started](https://wordpress.org/support/users/suseika/topics/)
 *   [Replies Created](https://wordpress.org/support/users/suseika/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/suseika/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/suseika/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/suseika/engagements/)
 *   [Favorites](https://wordpress.org/support/users/suseika/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: [[Sync Facebook Events] [Plugin: Sync Facebook Events] Nothing happens](https://wordpress.org/support/topic/plugin-sync-facebook-events-nothing-happens/)
 *  [Suseika](https://wordpress.org/support/users/suseika/)
 * (@suseika)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/plugin-sync-facebook-events-nothing-happens/#post-2758414)
 * Same here. Why isn’t it working? Is this a sort of promotion of Modern Tribe’s
   non-free plugin with the same functionality?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to build my menu's HTML different for each page?](https://wordpress.org/support/topic/how-to-build-my-menus-html-different-for-each-page/)
 *  Thread Starter [Suseika](https://wordpress.org/support/users/suseika/)
 * (@suseika)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/how-to-build-my-menus-html-different-for-each-page/#post-3435869)
 * I found out the solution and it worked perfectly for me, but I’m not sure that
   this is the right way. This link helped me a lot: [http://www.wpbeginner.com/wp-themes/how-to-add-custom-items-to-specific-wordpress-menus/](http://www.wpbeginner.com/wp-themes/how-to-add-custom-items-to-specific-wordpress-menus/)
   I added this code in the template’s header.php before calling wp_nav_menu():
 *     ```
       add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );
       function your_custom_menu_item ( $items, $args ) {
           // Here goes anything you wish, it just has to be concatenated with $items variable.
           $items .= '<li><a href="'.get_post_meta(get_the_ID(), "foreignlink", true).'">Read this in Zorblaxian</a></li>';
   
           return $items;
       }
       ```
   

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