タイトル(the_title())をいじる

タイトルをcontentを使う。
なおこれを使うとwp_titleも換わります

タイトルをcontentを使う。
なおこれを使うとwp_titleも換わります

function the_title_func($title) {
        $title = get_the_content();
        return $title;
}
add_filter('the_title', 'the_title_func', 1);