PluginProbe
Advanced Excerpt / 4.2
Advanced Excerpt v4.2
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 4.2, at advanced-excerpt.php

26 lines 790 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.2
7 Author: Delicious Brains
8 Author URI: http://deliciousbrains.com/
9 */
10
11 $GLOBALS['advanced_excerpt_version'] = '4.2';
12
13 function advanced_excerpt_load_textdomain() {
14 load_plugin_textdomain( 'advanced-excerpt', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
15 }
16 add_action( 'wp_loaded', 'advanced_excerpt_load_textdomain' );
17
18 require_once 'class/advanced-excerpt.php';
19 require_once 'functions/functions.php';
20
21 function advanced_excerpt_init() {
22 global $advanced_excerpt;
23 $advanced_excerpt = new Advanced_Excerpt( __FILE__ );
24 }
25 add_action( 'init', 'advanced_excerpt_init', 5 );
26