This repository was archived by the owner on Oct 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathwp-api-oembed.php
85 lines (77 loc) · 2.34 KB
/
wp-api-oembed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* Plugin Name: oEmbed API
* Plugin URI: https://github.com/swissspidy/oEmbed-API
* Description: Allow others to easily embed your blog posts on their sites using oEmbed.
* Version: 0.9.0
* Author: Pascal Birchler
* Author URI: https://pascalbirchler.com
* License: GPLv2+
* Text Domain: oembed-api
* Domain Path: /languages
*
* @package WP_oEmbed
*/
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Init our plugin.
*
* @codeCoverageIgnore
*/
function oembed_api_init() {
require_once( dirname( __FILE__ ) . '/includes/functions.php' );
require_once( dirname( __FILE__ ) . '/includes/default-filters.php' );
}
/**
* Deactivate the oEmbed feature plugin.
*
* @codeCoverageIgnore
*/
function wp_oembed_maybe_deactivate() {
deactivate_plugins( plugin_basename( __FILE__ ) );
}
// Bail early if functionality is already built into core.
if ( function_exists( 'get_oembed_endpoint_url' ) ) {
add_action( 'admin_notices', 'wp_oembed_maybe_deactivate' );
} else {
register_activation_hook( __FILE__, 'oembed_api_activate_plugin' );
register_deactivation_hook( __FILE__, 'oembed_api_deactivate_plugin' );
add_action( 'plugins_loaded', 'oembed_api_init' );
}
/**
* Add our rewrite endpoint on plugin activation.
*
* @codeCoverageIgnore
*/
function oembed_api_activate_plugin() {
wp_oembed_rewrite_endpoint();
flush_rewrite_rules( false );
}
/**
* Flush rewrite rules on plugin deactivation.
*
* @codeCoverageIgnore
*/
function oembed_api_deactivate_plugin() {
flush_rewrite_rules( false );
}
/**
* Add our rewrite endpoint to permalinks and pages.
*/
function wp_oembed_rewrite_endpoint() {
add_rewrite_endpoint( 'embed', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT );
}