Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

# Liveticker (by stklcode)

* Contributors: Stefan Kalscheuer
* Contributors: stklcode
* Tags: liveticker, feed, rss
* Requires at least: 5.0
* Tested up to: 6.6
* Tested up to: 6.7
* Requires PHP: 7.2
* Stable tag: 1.2.3
* Stable tag: 1.3.0
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* License URI: https://www.gnu.org/licenses/gpl-2.0.html

A simple ajaxified liveticker plugin for WordPress.

Expand Down Expand Up @@ -80,6 +80,11 @@ caching time of 12 hours obviously makes no sense.

## Changelog

### 1.3.0 - 2025-03-10

* Requires at least PHP 7.2 and WordPress 5.0
* Sorting direction can now be changed for liveticker blocks

### 1.2.3 - 2025-02-04

* Escape ticker ID in shortcode output
Expand Down
Binary file modified assets/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/screenshot-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/screenshot-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/screenshot-7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion includes/class-scliveticker.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @var string OPTIONS
*/
const VERSION = '1.2.3';
const VERSION = '1.3.0';

/**
* Options tag.
Expand Down Expand Up @@ -208,7 +208,7 @@
$args = array(
'post_type' => 'scliveticker_tick',
'posts_per_page' => $limit,
'tax_query' => array(

Check warning on line 211 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.
array(
'taxonomy' => 'scliveticker_ticker',
'field' => 'slug',
Expand Down Expand Up @@ -334,7 +334,7 @@
$query_args = array(
'post_type' => 'scliveticker_tick',
'posts_per_page' => $limit,
'tax_query' => array(

Check warning on line 337 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.
array(
'taxonomy' => 'scliveticker_ticker',
'field' => 'slug',
Expand Down
2 changes: 1 addition & 1 deletion stklcode-liveticker.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Liveticker (by stklcode). If not, see http://www.gnu.org/licenses/gpl-2.0.html.
* along with Liveticker (by stklcode). If not, see https://www.gnu.org/licenses/gpl-2.0.html.
*/

// Exit if accessed directly.
Expand Down
Loading