>
Download This Plugin | |
Download Elegant Themes | |
Name | oEmbed Internal Link |
Version | 0.4.0 |
Author | Takayuki Miyauchi |
Rating | 0 |
Last updated | 2012-07-09 06:48:00 |
Downloads |
428
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
oEmbed Internal Link plugin added 1 kB of resources to the Home page and 1 kB of resources to the sample Post page.
oEmbed Internal Link plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! oEmbed Internal Link plugin ads no tables to your Wordpress blog database.Easy internal link by oEmbed.
This plugin maintained on GitHub.
Filter for default template.
<?php
add_filter("oembed-internal-link-template", "my_template");
function my_template($template) {
return '<div class="%class%"><a href="%post_url%">%post_thumb%</a></div>';
}
?>
You can use tags in the template as below.
Filter for stylesheet URI.
<?php
add_filter("oembed-internal-link-stylesheet", "my_style");
function my_style($url) {
return 'http://example.com/path/to/style.css';
}
?>