# super-rss-reader/3.1/super-rss-reader.php

Super RSS Reader – Add attractive RSS Feed Widget, version 3.1. 45 lines.

- Page: https://pluginprobe.com/plugins/super-rss-reader/3.1/code/super-rss-reader.php
- Raw: https://pluginprobe.com/plugins/super-rss-reader/3.1/raw/super-rss-reader.php
- Modified: 2020-04-16T15:40:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/super-rss-reader/3.1/code/super-rss-reader.php#L10-L20`.

```php
<?php
/*
 * Plugin Name: Super RSS Reader
 * Plugin URI: https://www.aakashweb.com/wordpress-plugins/super-rss-reader/
 * Author URI: https://www.aakashweb.com/
 * Description: Super RSS Reader is jQuery based RSS reader widget, which displays the RSS feeds in the widget in an attractive way. It uses the jQuery easy ticker plugin to add a news ticker like effect to the RSS feeds. Multiple RSS feeds can be added for a single widget and they get separated in tabs.
 * Author: Aakash Chakravarthy
 * Author URI: https://www.aakashweb.com/
 * Version: 3.1
 * Text Domain: super-rss-reader
 * Domain Path: /languages
 */

define( 'SRR_VERSION', '3.1' );
define( 'SRR_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
define( 'SRR_URL', plugin_dir_url( __FILE__ ) );

final class Super_RSS_Reader{

    public static function init(){

        self::includes();

        add_action( 'plugins_loaded', array( __class__, 'load_text_domain' ) );

    }

    public static function includes(){

        include_once( SRR_PATH . 'includes/widget.php' );
        include_once( SRR_PATH . 'includes/widget-admin.php' );

    }

    public static function load_text_domain(){

        load_plugin_textdomain( 'super-rss-reader', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );

    }

}

Super_RSS_Reader::init();

?>
```
