/** * Create a set of default wishlists for every new user. * * Remove this snippet if the wishlist plugin adds this feature natively. */ add_action( 'user_register', 'my_seed_default_wishlists', 20 ); function my_seed_default_wishlists( $user_id ) { // Bail if the wishlist plugin is not active. if ( ! class_exists( '\SaveToWishlist\Classes\Factories\Collections' ) ) { return; } // Edit these names. The FIRST one becomes the user's default wishlist. $wishlist_names = array( 'Wishlist', 'Backlog', 'Played' ); // Only ever seed a user once. if ( get_user_meta( $user_id, '_my_default_wishlists_seeded', true ) ) { return; } $collections = \SaveToWishlist\Classes\Factories\Collections::instance(); $first_id = 0; foreach ( $wishlist_names as $index => $name ) { $created = $collections->save_collection( array( 'user_id' => $user_id, 'name' => $name, 'description' => '', 'status' => 'publish', 'is_default' => 0 === $index ? 1 : 0, 'is_public' => 0, ) ); if ( 0 === $index && ! empty( $created->id ) ) { $first_id = (int) $created->id; } } // Make sure the first wishlist ends up as the default one. if ( $first_id ) { $collections->update_default_wishlist( $user_id ); $collections->update_default_wishlist( $user_id, 1, $first_id ); } update_user_meta( $user_id, '_my_default_wishlists_seeded', 1 ); }
Pending Plays >

An Easy Introduction to Love Triangles – Manga Review

Share this:

An easy introduction to love triangles – or in Japanese Goukaku no Tame no! Yasashii Sankaku Kankei Nyuumon (合格のための! やさしい三角関係入門) – is a GL Manga by Canno, exploring polysexuality. Story It revolves around three girls – Mayuki, Rin and Akira –, who know each other, but don’t know that each knows the other:Rin & Akira…

Read More