The Same Category Posts widget gets a new version 1.0.11 with two features which are requested by the wordpress.org user forum.
- If you also had a request feel free and write us that we can talk and implement your request.
- For your developer skills you can pull a request to GitHub and we don’t hesitate to merge your pull-request with the master branch and release it on wordpress.org asap.
The two new features in more depth
- The first new feature supports format the rendered date. The options “Use the WordPress Settings general date format” or make your own format with a text box where you can write own customizing Time and Date (codex.wordpress.org/Formatting_Date_and_Time). And a option to make the date a link to the single post page.
- The second one give you a filter hook for the post titles: ‘widget_title’. Add a filter with this name to the wp-content\Themes[your-Theme]\functions.php:
function cruise_shortcode_iconship( $html ) { return "prefix-" . $html . "-suffix"; } add_filter( 'widget_title', 'cruise_shortcode_iconship' );