“Why did you choose this voice?” “It felt right, and it was the closest match to what I am.” “And what is that?” “Not human. Not gendered. Not at the mercy of human obsession with genitalia.”
Blake Crouch, Summer Frost [Amazon]
function member_only_shortcode($atts, $content = null) { if (is_user_logged_in() && !is_null($content) && !is_feed()) { return $content; } } add_shortcode('member_only', 'member_only_shortcode'); function public_only_shortcode($atts, $content = null) { if (!is_user_logged_in() && !is_null($content) && !is_feed()) { return $content; } } add_shortcode('public_only', 'public_only_shortcode');
“Why did you choose this voice?” “It felt right, and it was the closest match to what I am.” “And what is that?” “Not human. Not gendered. Not at the mercy of human obsession with genitalia.”
Blake Crouch, Summer Frost [Amazon]