is_pro() ) { return false; } $result = $GLOBALS['user_role_editor']->get_post_view_access_users( $post_id ); return $result; } // end of ure_get_post_view_users() } if ( ! function_exists( 'ure_hide_admin_bar' ) ) { function ure_hide_admin_bar() { show_admin_bar(false); } // end of hide_admin_bar() } if ( ! function_exists( 'wp_roles' ) ) { /** * Included for back compatibility with WP 4.0+ * Retrieves the global WP_Roles instance and instantiates it if necessary. * * @since 4.3.0 * * @global WP_Roles $wp_roles WP_Roles global instance. * * @return WP_Roles WP_Roles global instance if not already instantiated. */ function wp_roles() { global $wp_roles; if (!isset($wp_roles)) { $wp_roles = new WP_Roles(); } return $wp_roles; } }