%2$s', esc_url( $args['url'] ), esc_html__( 'View this collection on Medium.com', 'jetpack' ) ); } wp_enqueue_script( 'medium-embed', 'https://static.medium.com/embed.js', array(), JETPACK__VERSION, true ); return sprintf( '%6$s', esc_attr( $args['type'] ), esc_url( $args['url'] ), esc_attr( $args['width'] ), esc_attr( $args['border'] ), esc_attr( $args['collapsed'] ), esc_html__( 'View at Medium.com', 'jetpack' ) ); } /** * Shortcode support that allows passing in URL * * @param array $atts Shortcode attributes. */ function jetpack_embed_medium_shortcode( $atts ) { $atts = jetpack_embed_medium_args( $atts ); if ( ! empty( $atts['url'] ) ) { global $wp_embed; return $wp_embed->shortcode( $atts, $atts['url'] ); } elseif ( current_user_can( 'edit_posts' ) ) { return esc_html__( 'You did not provide a valid Medium URL.', 'jetpack' ); } else { return ''; } } add_shortcode( 'medium', 'jetpack_embed_medium_shortcode' ); /** * Get embed type (profile, collection, or story) based on Medium URL. * * @param string $url Medium URL. */ function jetpack_embed_medium_get_embed_type( $url ) { $url_path = wp_parse_url( $url, PHP_URL_PATH ); if ( preg_match( '/^\/@[\.\w]+$/', $url_path ) ) { return 'profile'; } elseif ( preg_match( '/^\/(?:s)\/(.+)$/', $url_path ) ) { return 'collection'; } return 'story'; } /** * Process Medium shortcode attributes. * * @param array $atts Shortcode attributes. */ function jetpack_embed_medium_args( $atts ) { return shortcode_atts( array( 'url' => '', 'width' => '400', 'border' => true, 'collapsed' => false, ), $atts, 'medium' ); }