File: /home/khakzad/public_html/milad/wp-content/themes/Zadman-1/functions.php
<?php
define("INC", TEMPLATEPATH . "/functions");
require_once INC . "/wpzoom-functions.php";
require_once INC . "/wpzoom-core.php";
// custom excerpt ellipses for 3.1
function custom_excerpt_more($more) {
return '…';
}
add_filter('excerpt_more', 'custom_excerpt_more');
function new_excerpt_length($length) {
return 50;
}
add_filter('excerpt_length', 'new_excerpt_length');
// Changing excerpt more
function new_excerpt_more($more) {
global $post;
}
add_filter('excerpt_more', 'new_excerpt_more');
?>