0, 'key' => 0, 'mode' => '', ), $atts, 'scribd' ); $modes = array( 'list', 'book', 'slide', 'slideshow', 'tile' ); $atts['id'] = (int) $atts['id']; if ( preg_match( '/^[A-Za-z0-9-]+$/', $atts['key'], $m ) ) { $atts['key'] = $m[0]; if ( ! in_array( $atts['mode'], $modes, true ) ) { $atts['mode'] = ''; } return scribd_shortcode_markup( $atts ); } else { return ''; } } /** * Display the shortcode. * * @param array $atts Shortcode attributes. * @return string The rendered shortcode. */ function scribd_shortcode_markup( $atts ) { $sandbox = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request() ? 'sandbox="allow-popups allow-scripts allow-same-origin"' : ''; $url = add_query_arg( array( 'start_page' => '1', 'view_mode' => esc_attr( $atts['mode'] ), 'access_key' => esc_attr( $atts['key'] ), ), esc_url( sprintf( 'https://www.scribd.com/embeds/%1$d/content', absint( $atts['id'] ) ) ) ); return sprintf( '
%4$s
', $url, $sandbox, absint( $atts['id'] ), esc_html__( 'View this document on Scribd', 'jetpack' ) ); } add_shortcode( 'scribd', 'scribd_shortcode_handler' ); /** * Scribd supports HTTPS, so use that endpoint to get HTTPS-compatible embeds. * * @param array $providers Array of oEmbed providers. */ function scribd_https_oembed( $providers ) { if ( isset( $providers['#https?://(www\.)?scribd\.com/doc/.*#i'] ) ) { $providers['#https?://(www\.)?scribd\.com/doc/.*#i'][0] = 'https://www.scribd.com/services/oembed'; } return $providers; } add_filter( 'oembed_providers', 'scribd_https_oembed' );