Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/app/webroot/new_news/wp-content/plugins/jetpack/modules/shortcodes/ |
Upload File : |
<?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] */ // 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 ); // Create Shortcode function jetpack_houzz_shortcode( $atts, $content=null ) { $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' );