css
2 weeks ago
images
1 year ago
img
4 weeks ago
js
6 months ago
archiveorg-book.php
6 months ago
archiveorg.php
6 months ago
archives.php
2 weeks ago
bandcamp.php
6 months ago
brightcove.php
5 months ago
cartodb.php
6 months ago
class.filter-embedded-html-objects.php
6 months ago
codepen.php
6 months ago
crowdsignal.php
5 months ago
dailymotion.php
6 months ago
descript.php
6 months ago
facebook.php
6 months ago
flatio.php
6 months ago
flickr.php
5 months ago
getty.php
6 months ago
gist.php
6 months ago
googleapps.php
6 months ago
googlemaps.php
3 weeks ago
googleplus.php
6 months ago
gravatar.php
6 months ago
houzz.php
6 months ago
inline-pdfs.php
6 months ago
instagram.php
6 months ago
kickstarter.php
6 months ago
mailchimp.php
5 months ago
medium.php
6 months ago
mixcloud.php
6 months ago
others.php
6 months ago
pinterest.php
6 months ago
presentations.php
6 months ago
quiz.php
6 months ago
recipe.php
6 months ago
scribd.php
6 months ago
shortcode-utils.php
6 months ago
sitemap.php
6 months ago
slideshare.php
6 months ago
slideshow.php
4 weeks ago
smartframe.php
6 months ago
soundcloud.php
6 months ago
spotify.php
6 months ago
ted.php
6 months ago
tweet.php
6 months ago
twitchtv.php
6 months ago
twitter-timeline.php
6 months ago
twitter.php
6 months ago
unavailable.php
6 months ago
untappd-menu.php
6 months ago
upcoming-events.php
6 months ago
ustream.php
6 months ago
videopress.php
6 months ago
vimeo.php
1 week ago
vine.php
6 months ago
vr.php
1 week ago
wufoo.php
6 months ago
youtube.php
3 months ago
houzz.php
39 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Houzz Embed |
| 4 | * |
| 5 | * Examples: |
| 6 | * Post content: |
| 7 | * - [houzz=http://www.houzz.com/pro/james-crisp] |
| 8 | * - http://www.houzz.com/pro/james-crisp |
| 9 | * Blog sidebar: [houzz=http://www.houzz.com/profile/alon w=200 h=300] |
| 10 | * |
| 11 | * @package automattic/jetpack |
| 12 | */ |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit( 0 ); |
| 16 | } |
| 17 | |
| 18 | // Register oEmbed provider. |
| 19 | wp_oembed_add_provider( '#https?://(.+?\.)?houzz\.(com|co\.uk|com\.au|de|fr|ru|jp|it|es|dk|se)/.*#i', 'https://www.houzz.com/oembed', true ); |
| 20 | |
| 21 | /** |
| 22 | * Display shortcode |
| 23 | * |
| 24 | * @param array $atts Shortcode attributes. |
| 25 | */ |
| 26 | function jetpack_houzz_shortcode( $atts ) { |
| 27 | $url = substr( $atts[0], 1 ); |
| 28 | $args = array(); |
| 29 | if ( isset( $atts['w'] ) && is_numeric( $atts['w'] ) ) { |
| 30 | $args['width'] = $atts['w']; |
| 31 | } |
| 32 | if ( isset( $atts['h'] ) && is_numeric( $atts['h'] ) ) { |
| 33 | $args['height'] = $atts['h']; |
| 34 | } |
| 35 | $oembed = _wp_oembed_get_object(); |
| 36 | return $oembed->get_html( $url, $args ); |
| 37 | } |
| 38 | add_shortcode( 'houzz', 'jetpack_houzz_shortcode' ); |
| 39 |