-header
-header-hotel
-header-single-normal
-header-trimming
cssへのURLをアールマイティなものに変更
開かないphpリンクを削除
-right_side
-new
-new_aqua.php
-new_bird_small_animal
旧
the_post_thumbnail(array(thumbnail),
新
the_post_thumbnail((‘thumbnail’),
-greeting
-greeting2
変更前
$post = get_post($post_id);
変更後
$post = get_post(get_the_id());
-function
削除
//htmlを挿入できるようにするコード
add_filter(‘user_has_cap’,’allow_unfiltered_html’,10,3);
function allow_unfiltered_html($allcaps, $cap, $args ){
$allcaps[‘unfiltered_html’]=$allcaps[‘edit_posts’];
return($allcaps);
}