Functions.php içerik
/* Widget Uyumu bas */
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => ' ',
'before_title' => ' ',
));
/* Widget Uyumu son */
/* Ozet ayarları bas */
function wpn_content_limit($content, $ilimit = false)
{
$limit = ($ilimit) ? $ilimit : 50;
$pad="...";
$content = strip_tags($content);
if(strlen($content) > $limit)
{
$content = substr($content,0,$limit);
}
echo $content.$pad;
}
/* Ozet Ayarları Son */
?>
Ek Olarak: //Güncel