>
Download This Plugin | |
Download Elegant Themes | |
Name | Single Post Widget |
Version | 0.4.0 |
Author | Takayuki Miyauchi |
Rating | 0 |
Last updated | 2013-02-02 05:33:00 |
Downloads |
4191
|
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%
Single Post Widget plugin added 625 bytes of resources to the Home page and 619 bytes of resources to the sample Post page.
Single Post Widget plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Single Post Widget plugin ads no tables to your Wordpress blog database.Display single post from url on sidebar widget.
This plugin maintained on GitHub.
Filter for default template.
<?php
add_filter("single-post-widget-template", "my_template");
function my_template($template) {
return '<div class="%class%"><a href="%post_url%">%post_thumb%</a></div>';
}
?>
Filter for stylesheet URI.
<?php
add_filter("single-post-widget-stylesheet", "my_style");
function my_style($url) {
return 'http://example.com/path/to/style.css';
}
?>
Please contact to me.