File: /opt/aphex/sites/bissds.com/wp-content/plugins/advanced-excerpt/advanced-excerpt.php
<?php
/*
Plugin Name: Advanced Excerpt
Plugin URI: http://wordpress.org/plugins/advanced-excerpt/
Description: Control the appearance of WordPress post excerpts
Version: 4.3.9
Author: WPKube
Author URI: https://wpkube.com
Text Domain: advanced-excerpt
*/
$GLOBALS['advanced_excerpt_version'] = '4.3.9';
function advanced_excerpt_load_textdomain() {
load_plugin_textdomain( 'advanced-excerpt', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
}
add_action( 'wp_loaded', 'advanced_excerpt_load_textdomain' );
require_once 'class/advanced-excerpt.php';
require_once 'functions/functions.php';
function advanced_excerpt_init() {
global $advanced_excerpt;
$advanced_excerpt = new Advanced_Excerpt( __FILE__ );
}
add_action( 'init', 'advanced_excerpt_init', 5 );