hello
Server : Apache/2.4.52 (Ubuntu) System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : servadmin ( 1000) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE Directory : /www/docs/www.obusignal.com/www.obusignal.com/wp-content/plugins/wp-issuu/ |
<?php
/**
* Plugin Name: Issuu Embed
* Plugin URI: http://issuu.com
* Description: This plugin simplifies the embedding of Issuu publications in blog posts. Simply copy Issuu publication URL and paste it into your post.
* Version: 3.0
* Author: Issuu
* Author URI: http://issuu.com
* License: GPL2
*/
function add_issuu_oembed_provider(){
wp_oembed_add_provider('#(https?://)?(www\.)?issuu\.com/.+/docs/.+#i', 'http://issuu.com/oembed_wp', true);
}
add_action('init', 'add_issuu_oembed_provider');