內容簡介
顯示跑馬燈。
它可以顯示三個自訂的跑馬燈。
它可以將置頂文章顯示為跑馬燈。
它可以將 WooCommerce 的折扣銷售顯示為跑馬燈。
它支援小工具、簡碼和區塊的顯示方式。
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
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 = '' . esc_attr( $change ) . '';
$text1 = str_replace( $change, $changed, $text1 );
}
return $text1;
},
10,
2
);
