funcitons.php 一覧

<?php

// ヘッダー画像
add_theme_support('custom-header',array(
'width' => 1000,
'height' => 300,
'hader-text' => false
));

// 概要抜粋 文字
function my_length($lenght) {
return 55;// 文字数
}
add_filter('excerpt_mylength','my_lenght');

// 概要抜粋の省略記号
function my_more($more) {
return '...';
}
add_filter('excerpt_more','my_more');