File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
/**
* Link twitter users
*
* Add excerpts for Pages
*
* @package Excerpts for Pages
* @author Joan Boluda Name <joan@boluda.com>
* @license GPL-2.0+
* @link http://boluda.com
* @copyright 2013 boluda.com
*
* @wordpress-plugin
* Plugin Name: Excerpts for Pages
* Plugin URI: http://boluda.com/
* Description: Add excerpts for Pages
* Version: 1.6
* Author: Joan Boluda
* Author URI: http://boluda.com
* Text Domain: boluda-efp
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /lang
*/
//Excerpts for Pages
function bld_efp() {
add_post_type_support('page', array('excerpt'));
}
add_action('init', 'bld_efp');