Title: salhamander's Replies | WordPress.org

---

# salhamander

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

 *   [Profile](https://wordpress.org/support/users/salhamander/)
 *   [Topics Started](https://wordpress.org/support/users/salhamander/topics/)
 *   [Replies Created](https://wordpress.org/support/users/salhamander/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/salhamander/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/salhamander/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/salhamander/engagements/)
 *   [Favorites](https://wordpress.org/support/users/salhamander/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: [[Webcomic] How are multiple comic images displayed?](https://wordpress.org/support/topic/how-are-multiple-comic-images-displayed/)
 *  [salhamander](https://wordpress.org/support/users/salhamander/)
 * (@salhamander)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/how-are-multiple-comic-images-displayed/#post-10650008)
 * Not the creator, but the comics are simply displayed underneath each other. I’m
   making a plugin that uses flickity to make Instagram-style sliding webcomics.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Webcomic] Getting an array of characters for a specific post](https://wordpress.org/support/topic/getting-an-array-of-characters-for-a-specific-post/)
 *  Thread Starter [salhamander](https://wordpress.org/support/users/salhamander/)
 * (@salhamander)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/getting-an-array-of-characters-for-a-specific-post/#post-10648485)
 * Solved it myself. Not sure if the most efficient way, but it works.
 *     ```
       $comics = get_webcomics();
       foreach ( $comics as $comic ) {
           $args = [
                'type' => 'storyline',
               'object_ids' => $comic->ID
           ];
           $storylines = get_webcomic_terms($args);
       }
       ```
   

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