Incease maximum # of Sticky Featured
Plugin Name: SM Sticky Featured Widget
Plugin URI:
SM Sticky Featured Widget-Sethmatics WebDev
Description: A tiny but high in demand widget to post sticky or "featured" posts into any widget area complient with ClassiPress.
Author: Seth Carstens
Version: 1.1.0
Author URI:
Business Website Designs and Wordpress in Arizona | Sethmatics
/* User-selected settings. */
//title
$title = apply_filters('widget_title', $instance['title'] );
//number of posts (if never saved, defaults to 5
if ( !$number = (int) $instance['number'] ) $number = 5;
else if ( $number < 1 ) $number = 1;
else if ( $number > 15 ) $number = 15;
/* User-selected settings. */
//title
$title = apply_filters('widget_title', $instance['title'] );
//number of posts (if never saved, defaults to 5
if ( !$number = (int) $instance['number'] ) $number = 5;
else if ( $number < 1 ) $number = 1;
else if ( $number > 15 ) $number =
max#;
Then when you set your max in the widget controls, it will work.