文字化け。。。
-
<?php
add_action( ‘init’, ‘create_post_type’ );
function create_post_type() {
register_post_type( ‘tabako’,
array(
‘labels’ => array(
‘name’ => __( ‘入札情報’ ),
‘singular_name’ => __( ‘入札情報’ )
),
‘public’ => true,
‘has_archive’ => true,
‘menu_position’ => 100,
)
);
}
?>日本語部分がメニューとして文字化けしてしまう。
原因はなんでしょうか。
3件の返信を表示中 - 1 - 3件目 (全3件中)
3件の返信を表示中 - 1 - 3件目 (全3件中)
- トピック「文字化け。。。」には新たに返信することはできません。