// Add the printable schedule shortcode function printable_schedule_shortcode($atts) { // Fetch the sessions dynamically $args = array( 'post_type' => 'your_custom_post_type', // Replace with your custom post type for sessions/events 'posts_per_page' => -1, // Retrieve all sessions 'orderby' => 'meta_value', // Order by session date 'order' => 'ASC', // Ascending order (earliest session first) 'meta_key' => 'session_date', // Custom field for session date 'meta_query' => array( array( 'key' => 'session_date', // Custom field for session date 'compare' => 'EXISTS', // Ensure the field exists ), ), ); // Create the query $query = new WP_Query($args); $sessions = []; // If there are posts, process them if ($query->have_posts()) { while ($query->have_posts()) { $query->the_post(); // Fetch session details from custom fields $date = get_post_meta(get_the_ID(), 'session_date', true); // Custom field for session date $time = get_post_meta(get_the_ID(), 'session_time', true); // Custom field for session time $title = get_the_title(); // Title of the session $presenter = get_post_meta(get_the_ID(), 'session_presenter', true); // Custom field for session presenter // Add the session data to the sessions array $sessions[] = [ 'date' => $date, 'time' => $time, 'title' => $title, 'presenter' => $presenter, ]; } } // Reset post data wp_reset_postdata(); // Start building the output for the printable schedule $output = '
'; $output .= '

Printable Full Schedule

'; if (!empty($sessions)) { $output .= ''; } else { $output .= '

No sessions found.

'; } $output .= '
'; // Add custom CSS for styling $output .= ''; return $output; } // Register the printable schedule shortcode add_shortcode('printable_schedule', 'printable_schedule_shortcode'); Code of Conduct – Access Services in Libraries

Access Services in Libraries, Inc. (ASiL) is dedicated to providing a harassment-free Access Services Conference experience for everyone, regardless of gender, gender identity and expression, age, sexual orientation, veteran status, disability, physical appearance, body size, race, ethnicity, religion (or lack thereof), or technology choices. This extends to all conference and conference-adjacent spaces, including social media channels and virtual conference chat rooms. All communication should be appropriate for a workplace audience including people of many different backgrounds. Each participant is entirely responsible for their own behavior. 

Examples of expected behavior that contributes to a positive environment includes:

  • Using welcoming and inclusive language
  • Being respectful of differing viewpoints and lived experiences
  • Accepting constructive criticism gracefully and owning the impact of our words and actions
  • Showing empathy towards other participants
  • Showing consideration and respect in both speech and action
  • Showing respect for individuals’ personal boundaries
  • Respecting the pronouns indicated by attendees and not assuming pronouns
  • Leaving room for each other in the conversation

Unacceptable behavior includes, but is not limited to:

  • Harassment of any kind, even in a joking or ironic manner
  • Deliberate intimidation, stalking, social media harassment, or non-consensual photography or recording
  • Trolling, insulting or derogatory comments, personal or political attacks, or sustained disruption of talks or other events
  • Other conduct which could reasonably be considered inappropriate in a workplace setting

Participants asked to stop any behavior(s) are expected to comply immediately. Sponsors are also subject to the Code of Conduct. If a participant engages in unacceptable behavior(s), the conference organizers may take any action they deem appropriate, including warning the offender or expulsion from the conference with no refund.

If you encounter any unacceptable behavior, whether as a bystander or the target of the behavior, please reach out to the ASiL Steering Committee by emailing sc@accessservicesinlibraries.org or by filling out this anonymous form.

Thank you for helping to make this a welcoming space for all to participate, learn, and share.

This Code of Conduct is based on the CALM https://www.conferenceonacademiclibrarymanagement.com/ and NISO Plus Conference Code of Conduct https://niso.plus/codeofconduct-2/.   

Skip to content