File Editor
Directories:
.. (Back)
css
images
img
js
Files:
archiveorg-book.php
archiveorg.php
archives.php
bandcamp.php
brightcove.php
cartodb.php
class.filter-embedded-html-objects.php
codepen.php
crowdsignal.php
dailymotion.php
descript.php
facebook.php
flatio.php
flickr.php
getty.php
gist.php
googleapps.php
googlemaps.php
googleplus.php
gravatar.php
houzz.php
inline-pdfs.php
instagram.php
kickstarter.php
mailchimp.php
medium.php
mixcloud.php
others.php
pinterest.php
presentations.php
quiz.php
recipe.php
scribd.php
sitemap.php
slideshare.php
slideshow.php
smartframe.php
soundcloud.php
spotify.php
ted.php
tweet.php
twitchtv.php
twitter-timeline.php
unavailable.php
untappd-menu.php
upcoming-events.php
ustream.php
videopress.php
vimeo.php
vine.php
vr.php
wordads.php
wufoo.php
youtube.php
Create New File
Create
Edit File: houzz.php
<?php /** * Houzz Embed * * Examples: * Post content: * - [houzz=http://www.houzz.com/pro/james-crisp] * - http://www.houzz.com/pro/james-crisp * Blog sidebar: [houzz=http://www.houzz.com/profile/alon w=200 h=300] * * @package automattic/jetpack */ // Register oEmbed provider. 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 ); /** * Display shortcode * * @param array $atts Shortcode attributes. */ function jetpack_houzz_shortcode( $atts ) { $url = substr( $atts[0], 1 ); $args = array(); if ( isset( $atts['w'] ) && is_numeric( $atts['w'] ) ) { $args['width'] = $atts['w']; } if ( isset( $atts['h'] ) && is_numeric( $atts['h'] ) ) { $args['height'] = $atts['h']; } $oembed = _wp_oembed_get_object(); return $oembed->get_html( $url, $args ); } add_shortcode( 'houzz', 'jetpack_houzz_shortcode' );
Save Changes
Rename File
Rename