Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wp_embed_handler_kiwikz( $matches, $attr, $url, $rawattr ) {
- if ( !empty($rawattr['width']) && !empty($rawattr['height']) ) {
- $width = (int) $rawattr['width'];
- $height = (int) $rawattr['height'];
- } else {
- list( $width, $height ) = wp_expand_dimensions( 640, 385, $attr['width'], $attr['height'] );
- }
- $embed = sprintf(
- '<object width="%1$s" height="%2$s">
- <param name="movie" value="http://v.kiwi.kz/v/%3$s/"></param>
- <param name="allowFullScreen" value="true"></param>
- <param name="allowScriptAccess" value="always"></param>
- <embed src="http://v.kiwi.kz/v/%3$s/" type="application/x-shockwave-flash" width="640" height="385" allowFullScreen="true" allowScriptAccess="always"></embed>
- </object>',
- $width, $height, esc_attr($matches[1])
- );
- return $embed;
- }
- wp_embed_register_handler( 'kiwikz', '#http://kiwi\.kz/watch/(.+?)/#i', 'wp_embed_handler_kiwikz' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement