PluginProbe
Advanced Excerpt / trunk
Advanced Excerpt vtrunk
trunk 0.2.2 3.0 3.1 4.0 4.1 4.1.1 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 All 30 releases
advanced-excerpt / advanced-excerpt.php

advanced-excerpt.php in Advanced Excerpt trunk, at advanced-excerpt.php

27 lines 802 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Advanced Excerpt
4 Plugin URI: http://wordpress.org/plugins/advanced-excerpt/
5 Description: Control the appearance of WordPress post excerpts
6 Version: 4.5
7 Author: WPKube
8 Author URI: https://wpkube.com
9 Text Domain: advanced-excerpt
10 */
11
12 $GLOBALS['advanced_excerpt_version'] = '4.5';
13
14 function advanced_excerpt_load_textdomain() {
15 load_plugin_textdomain( 'advanced-excerpt', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
16 }
17 add_action( 'wp_loaded', 'advanced_excerpt_load_textdomain' );
18
19 require_once 'class/advanced-excerpt.php';
20 require_once 'functions/functions.php';
21
22 function advanced_excerpt_init() {
23 global $advanced_excerpt;
24 $advanced_excerpt = new Advanced_Excerpt( __FILE__ );
25 }
26 add_action( 'init', 'advanced_excerpt_init', 5 );
27