Simple Ticker
Displays the ticker.
The facts
- Rating
- 4★ from 4
- Active installs
- 500+
- Price
- Free
- Last updated
- 16 Aug 2026
- Added
- Jul 2016
- Requires WP
- 6.6
- Tested up to
- WP 7.1
- Requires PHP
- 8.0
- Downloads
- 12,647
Our analysis
AI-assistedSimple Ticker is a WordPress plugin that displays ticker information on your site. It can showcase up to three custom tickers, display sticky posts, and highlight WooCommerce sales. The plugin supports both widget and shortcode/block displays, providing flexibility in how the ticker is integrated into your site.
This plugin is suitable for WordPress users who want to present dynamic content in a ticker format, particularly those running WooCommerce stores or wanting to highlight specific posts.
Best for: WordPress users looking to display dynamic content in a ticker format.
What it does well
- ✓Displays up to three custom tickers
- ✓Can show sticky posts as ticker items
- ✓Highlights WooCommerce sales
- ✓Supports widget, shortcode, and block displays
- ✓Includes filter hooks for customisation
Where it falls short
- •Limited information on additional features or settings
Verdict
Simple Ticker provides a straightforward solution for displaying tickers, but lacks extensive documentation on advanced features.
From the developer
Katsushi Kawamori's own description of Simple Ticker, lightly tidied.
Displays the ticker.
It can display three own ticker.
It can view the Sticky Posts as ticker.
It can view the WooCommerce sale as ticker.
It supports the display of the widget and the short code and block.
Filter hooks
/** ==================================================
* Filter for Inner text.
* simple_ticker_1_inner_text
* simple_ticker_2_inner_text
* simple_ticker_3_inner_text
*
* @param $text1 Inner text.
* @param $post_id Post ID.
*
*/
add_filter(
'simple_ticker_1_inner_text',
function( $text1, $post_id ) {
if ( 3309 == $post_id ) {
$change = 'Test';
$changed = '<span style="color: #329BCB">' . esc_attr( $change ) . '</span>';
$text1 = str_replace( $change, $changed, $text1 );
}
return $text1;
},
10,
2
);