Simple Ticker

Simple Ticker Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 8,154 downloads
Simple Ticker Icon

Try plugin: Simple Ticker

We'll create fresh WordPress site with Simple Ticker installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Simple Ticker

Displays the ticker.

3


0


0


0


1

updated: 8 months ago
since: 8 years ago

Description

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
);