Cancel Done
Add SoundCloud

/>

/>

/>

'; // Check if title is set if ( $title ) { echo $before_title . $title . $after_title; } echo $before_widget; // Display the widget $soundcloud_iframe= 'No audio track to show.'; // Check if soundcloud URL is set & build full url $urlarr = array(); if (!preg_match("/\b(?:(?:https?|ftp):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i",$soundcloud_url)) { $soundcloud_iframe.=" (Invalid input URL)"; } else if ($sc_height != 'auto' && !preg_match('/^(\d*)?\d+$/', $sc_height)) { $soundcloud_iframe.=" (Invalid input height)"; } else if ( $soundcloud_url ) { // set height if ( $sc_height ) { $soundcloud_iframe= ''; } echo $soundcloud_iframe; echo '
'; echo $after_widget; echo ''; } } // register widget add_action( 'widgets_init', function() { return register_widget("wp_soundpress_plugin"); }, 1 ); ?>