PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
jetpack
/
modules
/
shortcodes
<?php /** * Pinterest embeds * * Based on "Board Widget" example here: http://business.pinterest.com/widget-builder/#code * * Example URL: https://pinterest.com/pin/129056345550241149/ * Second Example URL: https://uk.pinterest.com/annsawesomepins/travel/ * * @package automattic/jetpack */ wp_embed_register_handler( 'pinterest', '#' . 'https?://' . '(?:www\.)?' . '(?:[a-z]{2}\.)?' . 'pinterest\.[a-z.]+/' . '([^/]+)' . '(/[^/]+)?' . '#', 'pinterest_embed_handler' ); /** * Callback to modify output of embedded Pinterest posts. * * @param array $matches Regex partial matches against the URL passed. * @param array $attr Attributes received in embed response. * @param array $url Requested URL to be embedded. */ function pinterest_embed_handler( $matches, $attr, $url ) { // Pinterest's JS handles making the embed. $script_src = '//assets.pinterest.com/js/pinit.js'; wp_enqueue_script( 'pinterest-embed', $script_src, array(), JETPACK__VERSION, true ); $path = wp_parse_url( $url, PHP_URL_PATH ); if ( 0 === strpos( $path, '/pin/' ) ) { $embed_type = 'embedPin'; } elseif ( preg_match( '#^/([^/]+)/?$#', $path ) ) { $embed_type = 'embedUser'; } elseif ( preg_match( '#^/([^/]+)/([^/]+)/?$#', $path ) ) { $embed_type = 'embedBoard'; } else { if ( current_user_can( 'edit_posts' ) ) { return __( 'Sorry, that Pinterest URL was not recognized.', 'jetpack' ); } return; } $return = sprintf( '<a data-pin-do="%s" href="%s"></a>', esc_attr( $embed_type ), esc_url( $url ) ); // If we're generating an embed view for the WordPress Admin via ajax. if ( doing_action( 'wp_ajax_parse-embed' ) ) { $return .= sprintf( '<script src="%s"></script>', // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedScript esc_url( $script_src ) ); } return $return; }
[-] class.filter-embedded-html-objects.php
[edit]
[-] vimeo.php
[edit]
[-] inline-pdfs.php
[edit]
[+]
js
[-] vine.php
[edit]
[-] getty.php
[edit]
[-] twitter-timeline.php
[edit]
[-] codepen.php
[edit]
[-] upcoming-events.php
[edit]
[-] archiveorg-book.php
[edit]
[-] archiveorg.php
[edit]
[-] tweet.php
[edit]
[-] videopress.php
[edit]
[+]
..
[-] youtube.php
[edit]
[-] dailymotion.php
[edit]
[-] mixcloud.php
[edit]
[-] untappd-menu.php
[edit]
[-] crowdsignal.php
[edit]
[+]
img
[-] cartodb.php
[edit]
[-] presentations.php
[edit]
[-] others.php
[edit]
[-] recipe.php
[edit]
[-] unavailable.php
[edit]
[-] flickr.php
[edit]
[-] vr.php
[edit]
[-] gist.php
[edit]
[-] twitchtv.php
[edit]
[-] pinterest.php
[edit]
[-] quiz.php
[edit]
[+]
css
[-] bandcamp.php
[edit]
[-] wufoo.php
[edit]
[-] hulu.php
[edit]
[-] ustream.php
[edit]
[-] slideshare.php
[edit]
[-] kickstarter.php
[edit]
[-] soundcloud.php
[edit]
[-] sitemap.php
[edit]
[-] scribd.php
[edit]
[-] googleapps.php
[edit]
[-] houzz.php
[edit]
[-] facebook.php
[edit]
[+]
images
[-] instagram.php
[edit]
[-] mailchimp.php
[edit]
[-] archives.php
[edit]
[-] spotify.php
[edit]
[-] googleplus.php
[edit]
[-] googlemaps.php
[edit]
[-] slideshow.php
[edit]
[-] ted.php
[edit]
[-] wordads.php
[edit]
[-] gravatar.php
[edit]
[-] brightcove.php
[edit]
[-] flatio.php
[edit]
[-] medium.php
[edit]