Shows a summary of any Page in any sidebar.
The widget gets its image from the "Featured Image" field on the page you are featuring.
The widget gets its text from the "Excerpt" field on the page you are featuring. See also: "Can I use HTML or a WYSIWYG/TinyMCE Editor with the Excerpt Field?"
The Featured Image and Excerpt fields are found on the Page editing screen of the Page you want to feature. If you don't see them: 1. In the top right corner of any Page, click "Screen Options." 1. From the menu that slides down, make sure the "Excerpt" and "Featured Image" are both checked. 1. WordPress will remember this choice on all pages.
When selecting the page to feature in the widget settings, the list of pages includes two icons. The first icon is the featured image, and the second is the excerpt. If the icon is "lit-up," that means that page has that piece of information. If both are lit-up, the page is ready for optimal use in the widget. See this interface in the "Screenshots" tab.
The widget offers three ways to customize its design and output. The right method for you depends on what you want to accomplish and what you're comfortable doing technically.
fpw_page_title, fpw_excerpt, and fpw_featured_image. The widget's title also goes through the widget_title filter.
fpw_widget.class.php./fpw_views/ folder from the plugin's folder to your theme's folder (or child theme folder!) and modify fpw_default.php to your heart's content. The template itself contains additional information on what data is available to work with.Install the Rich Text Excerpts plugin or Advanced Excerpt plugins. Either plugin should take note and display your nicely formatted excerpt.
This may become a widget option some day. For now, it's easy to add with a filter. Place this code in your theme's functions.php file or in a functionality plugin:
function fapw_custom_read_more_link( $excerpt, $featured_page_id ) {
return $excerpt . ' <a href="' . get_permalink( $featured_page_id ) . '">Read More…</a>';
}
add_filter( 'fpw_excerpt', 'fapw_custom_read_more_link', 10, 2 );
Asked and answered in the support forum thread: "Changing the default thumbnail size"
If you are having trouble with this widget's layout in IE8, it may be due to the use of the <article> element in the widget. Double-check that your theme isn't using the HTML5 shiv/shim. If it's not, then adding the following to your theme's functions.php file may fix the issue (snippet source):
// add ie conditional html5 shim to header
function add_ie_html5_shim () {
global $is_IE;
if ($is_IE)
echo '<!--[if lt IE 9]>';
echo '<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>';
echo '<![endif]-->';
}
add_action('wp_head', 'add_ie_html5_shim');
This widget is intended to be straightforward and avoid melting into "option soup." However, that means it might not be perfect for what you need.
If you think the widget is almost right, double-check that can't use the one of the plugin's filters or the widget view template (see "I want to modify how the widget looks/works"). If that doesn't work, submit some feedback or vote on possible features for future versions of the plugins. And of course, there's always the support forum.
If this plugin is more than a little off, you might be looking for a different plugin like Posts in Sidebar, Query Posts Widget, Featured Page Widget, or Simple Featured Posts Widget.
I'm using the Chosen jQuery plugin. It's awesome. I first saw it in Gravity Forms.
Requires: 3.0.0 or higher
Compatible up to: 3.6-beta2
Last Updated: 2013-5-10
Downloads: 10,896
3 of 3 support threads in the last two months have been resolved.
Got something to say? Need help?